Skip to main content
This is the formula I am using in an HTML Email template:

IF(ISBLANK({!Contact.Nickname__c}),{!Contact.First_Name_Proper_Case__c},

{!Contact.Nickname__c}),

And this is the result when I test the merge field:

IF(ISBLANK(Larry),Lawrence,

Larry),

Any idea what is wrong with my formula?
2 respostas
  1. 15 de set. de 2016, 16:07
    {! IF( ISBLANK( Contact.Nickname__c), Contact.First_Name_Proper_Case__c, Contact.Nickname__c) }
0/9000