Reverse sign

Is there a simple way e.g. a property to reverse the sign that is printed on a report for a posted amount? e.g. a table contains an amount of -100, I want it to print 100 and visa versa. I know I can code around this with RevAmount := Amount * -1 and then using this as the source expression but that then the TotalField I am using to accumulate subtotals is in the wrong sign. Is my only solution to manually accumulate subtotals as well? Thanks in advance

Think I’ve found a satisfactory answer for this. I’ve used code to reverse the sign on the amount as described, then called the CREATETOTAL function for the new field in the pre-report trigger. Thanks anyway

You can set the Divisor property on the controls to -1.

Perfect Jack, thats much tidier, thank you.