Hello, I have a question regarding the cube package. I have a simple table that groups all the rows by statuses and display their sum.
Status Nb of Rows
-----------------------------------
Cancelled 10
Completed 5
Started 2
I'd like to display the data on one row as follow
Cancelled Completed Started
------------------------------------------------------
10 5 2
How can I do that using cube?
Thanks