Question

I have a report that will have an parameter specifing rather it should be a chart or table. What I want to do is simplly hide and show the proper element based upon the value they select in that drop down. Is this possible, and if so how would I go about it?

Was it helpful?

Solution

Try this :

IIf(Parameters!YourParameterName.Value == "Something", True, False)

The above expression should be written in the visibility property of the table

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top