then you can very easily get this output by using a matrix container. just give the column group as stage and category. also when you write back end query make sure you bring the stage value as a derived column like belowSELECT CASE WHEN Stage IN ('S1','S2') THEN 'Stage1' WHEN Stage IN ('S3','S4',..) THEN 'Stage2' END AS StageVal, Count,State,Category,...FROM Tablethen assign the dataset to matrix and group on StageVal and Category (column grouping)