Reputation: 1407
I want to show limited columns(10 columns) initially while rendering report output and after selecting excel export option ,click on view report then i need to export more columns records (40 columns data) in excel output.anyone give an idea to achieve this
Upvotes: 0
Views: 31
Reputation: 1275
Right click on the columns you want to hide and setup Column Visibility as "Show or hide based on condition" and setup below expression as condition.
=Iif(Globals!RenderFormat.Name = "EXCEL", True, False)
Upvotes: 1