How to calculate real average in JIDE pivot table?

89 Views Asked by At

I found, that JIDE pivot table calculates average incorrectly.

If summaries contains averages too, then it computes average of averages, which is not the same value as total average (and just senseless value).

Is it possible to calculate true average in JIDE?

1

There are 1 best solutions below

0
caniskit On

Assuming you are using CalculatedPivotDataModel, you can use the CalculatedPivotDataModel.setRunningCalculateSummary(false)call to achieve the desired behavior.

See the api docs for more information.