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

Hide Control based on Parameter

Status
Not open for further replies.

TStoker

Programmer
May 24, 2006
1
US
I have a report that I want to hide several data fields if the user selects TRUE from a parameter.

How do I do this?

ps I don't want to just make the font white because people will be able to export and could see the data if they know it exists in the report.
 
In OnRow() of the control, test param
and do:

IF ParamValue IS True THEN
DataValue = ""
END IF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top