In my application I have a bunch of cells not in range. Currently I am updating them one by one but it takes a lot of time. I would like to update them in batch by making just one call.
I looked at a few other SO threads such as this, but in my case the cells are not in range.
To simplify here is an example of what I am trying to achieve:
worksheet.update_acell("A1", "test1")
worksheet.update_acell("C5", "test2")
Is it possible to update cells not in range in one call?