Hi,
I have few currency fields displaying on UI as a template field in a table.
When a field value is ZERO, it shows as blank on UI.
Here is the template formula :
{{#discountedPrice}}
{{^discountedPrice}}{{#listPrice}}
discountedPrice
listPrice - When both of these are ZERO, it shows as blank.
Expected is : 0.00
What I want to do is : display values if it’s not null (Meaning ZERO or any other value except null)
What changes should I have to make for this formula ?