Removing a row if data is blank

P

Penny

I have multiple columns in a report if all my columns have
0.00 values for a certain row how would I code my report
so that whole row doesn't show up?

Thanks in Advance

Penny
 
J

John Spencer (MVP)

could you just change your underlying query to screen out these rows?

Where Not(FieldA = 0 and FieldB=0 And FieldC = 0)

Or

Where Fielda <> 0 OR FieldB <> 0 Or FieldC <> 0
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top