G
Guest
I want to inlcude the results of a query in a report.
Basically:
SELECT SUM(numberOfHours)
FROM myTable
WHERE myVersion =[myDropDown], myPlatform = 'Server';
My report is filtered on myVersion value which is selected in a dropdown.
But, I can not find any way to display the results of this query on the Report.
I was able to get the overall sum of numberOfHours but I am struggling trying to
come up with a way to split it into my three platform groups.
The overall sum I had to use textboxes and the sum property to get it to work.
It would be much easier if I could just display the results of a query.
Basically:
SELECT SUM(numberOfHours)
FROM myTable
WHERE myVersion =[myDropDown], myPlatform = 'Server';
My report is filtered on myVersion value which is selected in a dropdown.
But, I can not find any way to display the results of this query on the Report.
I was able to get the overall sum of numberOfHours but I am struggling trying to
come up with a way to split it into my three platform groups.
The overall sum I had to use textboxes and the sum property to get it to work.
It would be much easier if I could just display the results of a query.