Hello
I have a summary that is a sum of a column. In the AfterCellUpdate event I am calling a method that uses the summaries to diplay the totals of a column in a toolbar label. It looks like the summaries do not re-calcluate until after that event is done firing, even if I force a refresh of the summary. Is this how the functionality is supposed to work?
Thanks.
Hi,
What kind of summary is it? Are you using one of the built-in summaries like Average or Sum?
Or are you using a Formula?
For the built-in summaries, I'm not sure if this behavior is correct. I think the built-in summaries are not calculated until someone asks for the value. So that should be working in this case.
If it's a Formula, then Formulas are all calculated asynchronously. So you'd have to wait for the CalculationsCompleted event to fire.
Thanks. I found it...I think I asked a question like this before now that I found the line that solves my problem...
Basically I call the ReCalc on the Calc Manager and it solves my problem.