Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding columns on a report? 1

Status
Not open for further replies.

StuckInTheMiddle

Programmer
Mar 3, 2002
269
US
I have a report with several columns each followed by a running sum total. Nice and easy, however is there a way to 'hide' columns which have a running sum of 0? In others words all rows in that column where 0 so the running sum was 0?

Thanks
 
Set your row and sum control formats to something like:

#,##0.00;(#,##0.00);""

The significant part here is the 3rd section which is the format for zero amounts, ie blank.

Best Regards,
Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top