Hiding Data in a Report

  • Thread starter Thread starter Stephen Hartman
  • Start date Start date
S

Stephen Hartman

Hi,

I have a report that generates 5 columns of data, one being a price. If
this price is below 45 I would like the entire row visible. If the price is
above 45 I would like it hidden. I have tried several bits of code to no
avail. Any help would be greatly appreciated. Thanks
 
The easiest way I've done it is with conditional formatting. I set the font
color to white for the value I don't want displayed. This may not be the most
technical way to do it but it works.
 
Hi,

I have a report that generates 5 columns of data, one being a price. If
this price is below 45 I would like the entire row visible. If the price is
above 45 I would like it hidden. I have tried several bits of code to no
avail. Any help would be greatly appreciated. Thanks

Why not simply base the report on a Query with a criterion

on the price field? Then the rows with prices under 45 would simply
not be there to show at all.

John W. Vinson[MVP]
 

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

Back
Top