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?

Était-ce utile?

La solution

Try this :

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

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top