Reputation: 75
I am working on a report created by someone else. In the query for the Dataset it has two variables: @Start_Date and @End_Date but when the report is run, it does not ask for those dates. In stead it asks for the Year and Quarter. In the code section of the report I can see custom code functions that convert Year and Quarter to the Start and End date but cannot find where those functions are called.
Is there a way in SSRS to call a function for a query and return that data and where do I find that function call?
Upvotes: 0
Views: 571
Reputation: 469
SSRS reports are just xml reports. If you're using Visual Studio, just right-click the rdl file and select View Code
. From there you can search for the function name to see where it's being used.
Upvotes: 0