Posted 1 December 2019, 4:30 am EST - Updated 3 October 2022, 6:38 pm EST
Dear support,
Having used FlexGrid for years, I am starting to try FlexSheet, which looks pretty nice. Thanks a lot, Wijmo team!
There’s an issue I met about group aggregate with formula values. I did following to show a column footer to display total aggregates:
// flex is an instance of wjcGridSheet.FlexSheet
...
let row = new wjcGrid.GroupRow();
flex.columnFooters.rows.push(row);
flex.bottomLeftCells.setCellData(0, 0, '\u03A3');
Then I set aggregate = 1 for all numeric columns. You would see that aggregate does not count values in formula. See the snapshots.
Is there a way to implement this?