I am running a series of simulations in Excel, and need to write, and then read a bunch of cells within a Python loop.
Currently, when writing data to Excel using Range('Sheetname', (row, col)).value = new_value, the worksheet recalculates each time.
Is there anyway to turn off sheet calculation until all the writes have been made, then calculate once?
I am running a series of simulations in Excel, and need to write, and then read a bunch of cells within a Python loop.
Currently, when writing data to Excel using
Range('Sheetname', (row, col)).value = new_value, the worksheet recalculates each time.Is there anyway to turn off sheet calculation until all the writes have been made, then calculate once?