Mika Hakkinen
01/25/2021, 5:37 PMKarina
01/25/2021, 5:55 PMSandii
01/25/2021, 6:04 PMscottvonduhn
01/25/2021, 6:05 PM<#if ${record.currency} == 'GBP'> 123 <#elseif ${record.currency} == 'Euro'> 456 <#elseif ${record.currency} == 'US Dollar'> 789 <#else> xyz <#/if>
scottvonduhn
01/25/2021, 6:06 PMMika Hakkinen
01/25/2021, 6:11 PMscottvonduhn
01/25/2021, 6:14 PMscottvonduhn
01/25/2021, 6:15 PM<#if record.currency == 'GBP'> 123 <#elseif record.currency == 'Euro'> 456 <#elseif record.currency == 'US Dollar'> 789 <#else> xyz <#/if>
scottvonduhn
01/25/2021, 6:16 PM${record.currency}
only works outside of the <#if>
tagsMika Hakkinen
01/25/2021, 6:36 PMscottvonduhn
01/25/2021, 6:38 PMscottvonduhn
01/25/2021, 6:39 PM