function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kyla WesterKyla Wester 

Using Formula in Email Template

I am trying to turn a checkbox field into a yes or no in an HTML Email Template and using  {!if({!FieldName___c}, "Yes", "No")}  is giving me back ,"Yes","No"

What is wrong with the formula? 
Raj VakatiRaj Vakati
Use like this 
{!If(Contact.FieldName___c,"Yes","No")}
Raj VakatiRaj Vakati
You have to use it as show below 
{!If(Contact.FieldName___c,"Yes","No")}