-
Replace decimal zero’s with dash
I’ve got an expression that generates numbers to currency.
when the amount is a round number with “,00”, is it possible to replace the zero’s with a dash?I’ve got the following expression working:
v=thisComp.layer("Grocerylist#1.csv")("Data")("Outline")("KidsCost")("KidsCost 4")
new Intl.NumberFormat('nl-NL', {
style: 'currency',
currency: 'EUR',
useGrouping: true
}).format(v);