문제

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?

도움이 되었습니까?

해결책

Try this :

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

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top