Negative currency and Mail Merge format switches issue

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!

1 Like