Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Change expression according with dimension value on pivot table

Hello everyone:

I have a pivot table, and I need to change the formula expression according with Dimension Value. I mean when Dimension value on Pivot table is "HEADCOUNT" I need to Calculate the average, instead of SUM like others dimensions.

13 Feb 2016.png

Any idea will be appreciate.

Thank you

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe you can use something like

=If( DimensionField = 'HEADCOUNT',

    Avg ( Value),

   Sum(Value)

)

View solution in original post

2 Replies
swuehl
MVP
MVP

Maybe you can use something like

=If( DimensionField = 'HEADCOUNT',

    Avg ( Value),

   Sum(Value)

)

Not applicable
Author

Thank you.

My best regards