Forum Discussion
ajcbutler2024
Sep 12, 2024Copper Contributor
Grouping a SQL Pivot Table and adding a total column
Hi I have created a Pivot table in SQL code: Here is the code: SELECT "Pvt"."Request Display ID" as "Request_Display_ID", "Pvt"."Open" as "Open", "Pvt"."Awaiting User Info" as "Awaiting_U...
ajcbutler2024
Copper Contributor
rodgerkong Here you go. Thanks Rodger
ajcbutler2024
Sep 12, 2024Copper Contributor
I think I have cracked the group by by adding Group By "Request Display ID" and then summing the fields in the top section of the query. I just can't get a total for each row. It just comes up as blank.