I want to execute some code after Excel finished a calculate full which I triggered myself. So currently I'm calling the calculate full this way.
context.workbook.application.calculate('Full');
But it seems this just triggers Excel to calculate and is finished far before the actual calculation. Trying to await an afterwards called context.sync()
doesn't change the outcome.
Instead of a promise is there an event indicating the finished calculation?