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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bradley1122

    Null fields in a report

    Roy, This was indeed the problem. My Empty field was not null, and instead = "". I set my code to be the following: If field_1.Value="" Then field_2.Visible = False Else field_2.Visible = True End if And it worked well. Thanks for your help! Bradley
  2. bradley1122

    Null fields in a report

    This is interesting. I have some fields in a report that I would like to hide. If one field_1 is empty than I want to hide field_2. My code checks to see if field_1 in the "detail" is null and if so then it hides field_2: If IsNull(field_1.Value) Then field_2.Visible = False Else...

Part and Inventory Search

Back
Top