Issue with Signature in Template & the use if ISNOTBLANK

Hello, i need some help regarding this issue

Ive made a PDF template for my use case and there is a column for SIGNATURE.

In the SIGNATURE area in the template, if the SIGNATURE column is not empty, i want to put the 'Signature' , but if it is empty i want to put just the 'UserName' in the template. 
I've applied this expression in my PDF template:

<<IF(
ISNOTBLANK([_UserSign]),
[_UserSign],
[_UserNama]
)>>

The problem starts to occur when there signature column is empty and when it replace the area with the 'UserName' It creates a template looking like this:

usersign issue error.png





























This is the template expression in google doc:
userSIGN issue.png






Can anybody help me to search whats the issue with my expression or theres any other way to rectify this issue? Thanks

0 2 211
2 REPLIES 2

Der Ausdruck sollte in Ordnung sein. Da der [BenutzerName], so wie es aussieht als Hyperlink dargestellt wird, probieren Sie es mal mit diesem nicht getesteten Ausdruck. <<IF(ISNOTBLANK([_UserSign]),[_UserSign],ENCODEURL([_UserNama]))>>

thanks for the reply and suggestion. Ive tried the formula but it doesnt seem to work. 

It still resulted as the image i shared.