Reputation: 473
I have pivot table and it contains "Type" in Row field. There are different type available. Like AW,ED,MO,GT,SP. I would like to sum "AW" alone in one Row and all other types in second row to get the Amount value. I tried using formula in Calculated field. But it is not working.
Field1=IF(Type <>"AW";"Others";"AW")
Is this possible to get inside a pivot table? Help me
Upvotes: 0
Views: 5735
Reputation: 7951
Move Type to be to left-most field, then select everything except "AW".
Right click on the selected rows and Group them. This will create Type2
Move Code to between Type2 and Type
Within Type2 you can now rename "Group1" to whatever you want, and Collapse "AW" to show the subtotal.
Or, I guess, just use a SUMIF
?
{EDIT} Example of Grouped PivotTable
Upvotes: 1