im trying to flip the signs of a item amount on an advanced pdf and ALSO show it as a currency...what html code do i use
when i use...
<td align="right" colspan="4" >$${((item.rate?string.currency))*(-1)}</td>
it errors out
s
Seer
11/18/2020, 6:37 PM
@Ogabeg I would try this:
${(item.rate * -1)?string.currency}
m
Mars
11/19/2020, 3:17 AM
did this work? just curious
o
Ogabeg
11/19/2020, 3:18 AM
this worked...
${(item.rate) * (-1)?string.currency}