Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
You have brought up a pivot report but it defeaults to count for all columns.
Can you change all to max with one operation? Thanks |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
You can't manually change all the calculations to MAX with one step.
You can change each field individually, by double-clicking on it, and changing the summary function. Or, you can use programming to change all the data fields. For example: Sub MaxAllData() 'changes data fields to MAX Dim pt As PivotTable Dim pf As PivotField For Each pt In ActiveSheet.PivotTables For Each pf In pt.DataFields pf.Function = xlMax Next pf Next pt End Sub Wayne wrote: You have brought up a pivot report but it defeaults to count for all columns. Can you change all to max with one operation? Thanks -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivot table page filter not accepting multiple values. Workaround? | Excel Worksheet Functions | |||
Pivot Table - Multiple consolidation Range | Excel Worksheet Functions | |||
Multiple Pivot Tables with single Page Field | Excel Discussion (Misc queries) | |||
Problems with Pivot Table Field Sorting in Excel 2002 | Excel Discussion (Misc queries) | |||
Pivot Table combining multiple columns | Excel Discussion (Misc queries) |