Hi,
We use the following format switches to handle different currency formats.
We found an issue (minus sign is after $) when the merge field has negative decimal value. Please, refer to the following:
for Investor_Sum4= -400.45
Regards
Hi,
We use the following format switches to handle different currency formats.
We found an issue (minus sign is after $) when the merge field has negative decimal value. Please, refer to the following:
for Investor_Sum4= -400.45
Regards
@profiler You should specify number format like this
{ MERGEFIELD Investor_Sum4 \# "$#,0.0;(#,0.0)" }
Where formatting before the semicolon is formatting for positive values and after it is formatting for negative values.
It works, thanks!