A user wants an existing report, which exports an Excel spreadsheet, to be able to create multiple co-equal divisions/sections/subreports to the report in such a way that, when exported to Excel, the Excel file will put each section on a separate tab.
I'm thinking that may be impossible, but just in case it is: how?
IF my understanding is correct, you can achieve the result by using expression
IIF(Globals!RenderFormat.Name = "RPL", true, false)
Basic steps:
Because when displaying the report in report viewer, the render format is RPL. So when user is viewing the report through server or .net report viewer, those group containers will be hidden. But when exporting to excel, those group containers will be generated.