2

I need to make a pivot table of sales by cities. How can I filter it such that for Toronto and Montreal it will show sales > 50K and for other cities sales > 25K?

4

1 回答 1

1

You'll need to adjust your source data to include a new column for "filtered" values. That column will have a formula to include your criteria. For example:

=if([city name]="Toronto",if([value]>50000,[value],if([value]>25000,[value],0)),0)

Then in the pivot table you use the new 'filtered value' column and filter out anything that is 0.

于 2013-10-31T16:34:15.730 回答