Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Any idea will be appreciate.
Thank you
Maybe you can use something like
=If( DimensionField = 'HEADCOUNT',
Avg ( Value),
Sum(Value)
)
Maybe you can use something like
=If( DimensionField = 'HEADCOUNT',
Avg ( Value),
Sum(Value)
)
Thank you.
My best regards