Hello everybody,
I had made a report based on a query last year as bellow, but I don't remember how did I sort the results by "Totally"?
TRANSFORM Count(ID)
SELECT specialist,Count(ID) AS Totally
FROM projects
GROUP BY specialist
PIVOT main_firm;
The results are sorted by Totally:
Specialist totaly A B
-------------------------
Sara 10 6 4
David 7 2 5
Paul 3 2 1
When I run the Query, the results are not sorted, but in the report I see them sorted.
I'd like to create another report similar this one, but I do not know how could I do.
Anybody knows?
Best Regards
I had made a report based on a query last year as bellow, but I don't remember how did I sort the results by "Totally"?
TRANSFORM Count(ID)
SELECT specialist,Count(ID) AS Totally
FROM projects
GROUP BY specialist
PIVOT main_firm;
The results are sorted by Totally:
Specialist totaly A B
-------------------------
Sara 10 6 4
David 7 2 5
Paul 3 2 1
When I run the Query, the results are not sorted, but in the report I see them sorted.
I'd like to create another report similar this one, but I do not know how could I do.
Anybody knows?
Best Regards