Replied on
10 Sep 2015 02:55 AM IST
I think you cannot change the report structure dynamically to show different tables data based on selection.
Instead of, you can do one thing... By default add all the Tables in Report, change Visibility property of the Table to Expression for all tables (EMP, STUD, DEP)
Visibility (ex. for displaying only EMP table) = IFF(DropdowncontrolID.Value=="EMP",true,false)
Hope this may give some idea for you.
|