Signature is being converted to text

Hi all,

Per the below image, I have a PDF sent out via workflow that is converting one of my signature images into the text url showing where the signature is located. The template expression for the broken signature is relatively simple:

<<switch([Employee Refusal],
TRUE,“EMPLOYEE REFUSED”,
switch([Employee Available],
TRUE,[Employee Signature],“EMPLOYEE UNAVAILABLE”)
)>>

The expression works correctly in that it ends up with the appropriate link, but I suspect I need to enforce the correct data type within the formula. I am unsure how to do this for images or signatures, does anyone have any advice? I might just be missing something simple. The supervisor signature works normally but is a simple <<[Supervisor Signature]>> and does not have an expression yet.

2X_f_f7bfe58daf97086030aabcaf8bca347ce7d38a2b.png

Solved Solved
0 7 516
1 ACCEPTED SOLUTION

I figured it out! Apparently the next <<If: has to start on a new line. I changed the format to:

<<If: AND(NOT([Employee Refusal]), [Employee Available])>>
<<[Employee Signature]>>
<<EndIf>>
<<If: OR([Employee Refusal], NOT([Employee Available]))>>
<<IFS(
[Employee Refusal],
“EMPLOYEE REFUSED”,
NOT([Employee Available]),
“EMPLOYEE UNAVAILABLE”
)>>
<<EndIf>>

After I moved that to a new line I received the error for the missing on the employee signature, regardless, it works as intended now. Thanks for the help! This conversation also led me to the template specific IF expressions page which I had not seen before, these will be very useful.

View solution in original post

7 REPLIES 7
Top Labels in this Space