You can either add a table that contains all dates (linked with a left join to your current table) and use a date field from the new table as your column, or you could create a manual crosstab, where you would group on {table.status} and then create formulas like:
//{@Monday}:
if dayofweek({table.date}) = 2 then 1//for a count or {table.amt}
//for a quantity
//{@Tuesday}:
if dayofweek({table.date}) = 3 then 1
Then you would right click on each of these and insert SUMs, not counts. Then suppress the details section.
-LB