Hello!
We are trying to combine filters and summary calculations, which doesn’t seem to work.
Imagine following table data:
NAME…| VALUE
…
PersonA | 10
PersonA | 20
PersonB | 15
PersonA | 30
Now we already successfully added an empty fixed row to the bottom which holds the columnSummary calculated data.
Using: destinationRow: 0, destinationColumn: 1, reversedRowCoords: true, type: 'sum', forceNumeric: true
This works fine and gives us the following result:
NAME…| VALUE
…
PersonA | 10
PersonA | 20
PersonB | 15
PersonA | 30
…| 75
However, as soon as the user applies a filter on the first column e.g. choosing only “PersonA”, the summary results disappear. But what the user would expect and what we would like to have is a summary caluculation based on the applied filter:
FILTER: PersonA
PersonA | 10
PersonA | 20
PersonA | 30
…| 60
How can we accomplish this?
Thank you!