I'm working with some large spreadsheets (~30,000 rows) and running into some performance issues and have some of the following performance related questions:
How much can I, or better yet should I, cram into one Excel.run
function? What are things I need to consider to determine when to break things out into more than one Excel.run
call?
In general, how many ranges should I create inside one call?
How big of ranges should I be using before I need to perhaps split up one large range into multiple smaller ranges?
Will calling await ctx.sync()
more or less often do anything to help in relation to this?
EDIT:
This question was motivated by: https://stackoverflow.com/a/44424045/3806701