I use the pivot table function often and waa wondering if there is a way to have the format of the table like that of a normal database table, without haveing spaces for records with duplicate values. For example, this a a typical result for a pivot table:
I would like to see:
Can this be done?
Code:
PivotCol1 PivotCol2 PivotCol3
USA CA 10
NY 20
TX 30
MEXICO JAL 40
BCS 50
60
I would like to see:
Code:
PivotCol1 PivotCol2 PivotCol3
USA CA 10
USA NY 20
USA TX 30
MEXICO JAL 40
MEXICO BCS 50
MEXICO BCS 60