1
votes

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?

1
Do u want to set the visibility property on the chart based on the parameter ?praveen
Correct and I want to do the same thing for the table.bkorzynski

1 Answers

2
votes

Try this :

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

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