conditional format for running sum

P

PLT

I have a report with a running sum column. I want this field to change to a
different shade when the running sum is negative.
 
M

Marshall Barton

PLT said:
I have a report with a running sum column. I want this field to change to a
different shade when the running sum is negative.

I recommend using conditional formatting (Format menu) for
this.

Another way to get a different fore color for a negative
value is to use a custom format in the text box's Format
property. E.g. #,##0;[RED]-#;##0;0
 
P

PLT

Thanks. I got it working.

Marshall Barton said:
PLT said:
I have a report with a running sum column. I want this field to change to a
different shade when the running sum is negative.

I recommend using conditional formatting (Format menu) for
this.

Another way to get a different fore color for a negative
value is to use a custom format in the text box's Format
property. E.g. #,##0;[RED]-#;##0;0
 
Top