Printing only selected totals

  • Thread starter Thread starter BB
  • Start date Start date

BB

Registered User.
Local time
Today, 21:59
Joined
Aug 31, 2001
Messages
30
I have a report with several subreports. In the footer I total the subreports. Is there some way I can just print those totals that are positive (or negative)?

Thanks,
NewToAccess
 
Here's what i'd try:
=iif(yoursum <> 0, yoursum, "") basically saying print yoursum or a blank.
 

Users who are viewing this thread

Back
Top Bottom