I am switching from Crystal Reports to SSRS Reporting. In Crystal Reports, there was a way to display the Selection Criteria at the end of each report. This displayed all of the data manipulations made by the developer to the report data. Example:(this would be displayed at the end of each report in Crystal)
Selection Criteria:
usp.Members.MemberID <>2 and
usp.Members.Active = "Y" and
if(usp.Members.Location = "M1" then "Admission Location" else " ")
In SSRS I am able to manipulate the data in a number of places; Query Builder in the Dataset Properties, Textbox/Field Expressions, and via Filters.
Is there any any that I can display all the report expressions I have made, or display the query used to generate the dataset, at the end of the report to show the user the logic behind the data?
I understand what I am asking could be difficult to understand. Any help is appreciated.