I am new in creating pivot table. I tried a simple case of creating a pivot table to count types of fruits in two different baskets. My original table is
Basket1 | Basket2 |
apple | apple |
apple | apple |
orange | orange |
pears | pears |
pears | mango |
mango | mango |
When I created the pivot table, I see the first column values are correct but the second column is incorrect. The Pivot table is as below, the second column is copy of first column.
Row Labels | Count of Basket1 | Count of Basket2 |
apple | 2 | 2 |
mango | 1 | 1 |
orange | 1 | 1 |
pears | 2 | 2 |
Grand Total | 6 | 6 |
IN Pivot table field I have
- No filter
- Rows Field: basket1
- Column Field: Values
- Values Field: Count of basket1 and Count of Basket2
(Pivot table fields image could not be posted)
What am I doing wrong?