Is there a formula that you can include in yo...

Is there a formula that you can include in your email template to hide columns that are blank when sending an email notification? For example, in the ClickToSendEmail example app, you can email the product. If the description of the product was blank, then the formula would automatically exclude the Description from the email.

0 3 410
3 REPLIES 3

May I ask thisโ€ฆ why do you need to hide that value if itโ€™s blank? The app doesnโ€™t show that fieldโ€™s value automatically if itโ€™s blank.

@Aleksi_Alkio What we have in our email looks like this:

Description: <<[Product].[Description]>>

Weโ€™d want to enclose that entire line in a formula so that the text โ€œDescription:โ€ would be hidden if <<[Product].[Description]>> is blank.

How aboutโ€ฆ <<IFS(ISNOTBLANK([Product].[Description]),CONCATENATE("Description: ",[Product].[Description]))>>

Top Labels in this Space