I have a report with nested page sets. I have to change the grouping level of the lists in the report depending on the page.
My initial thought was to try this in a query item:
Case PageName()
When 'Project' Then [Project]
When 'Region' Then [Region]
Else 'Unknown'
End
This doesn't work because PageName isn't recognized. Any idea on how I could make this works.
My initial thought was to try this in a query item:
Case PageName()
When 'Project' Then [Project]
When 'Region' Then [Region]
Else 'Unknown'
End
This doesn't work because PageName isn't recognized. Any idea on how I could make this works.