I have a query that produces the following results.
class, division, count, status
86 50 200 Approved
86 50 67 Not Approved
Is there a way I can get it so that it displays in the following manner?
class, division, Approved, Not Approved
86, 50, 200, 67
Basically I want to combine the class and division and make the status as part of the column headings.
class, division, count, status
86 50 200 Approved
86 50 67 Not Approved
Is there a way I can get it so that it displays in the following manner?
class, division, Approved, Not Approved
86, 50, 200, 67
Basically I want to combine the class and division and make the status as part of the column headings.