vallettea / koala

Transpose your Excel calculations into python for better performances and scaling.
GNU General Public License v3.0
143 stars 60 forks source link

Merging fix of Spreadsheet/ExcelCompiler, updated tests, Attempt 4 #225

Closed bradbase closed 4 years ago

bradbase commented 4 years ago
bradbase commented 4 years ago

Merging ExcelCompiler with Spreadsheet to remove ExcelCompiler can't be done simply.

If you keep fixing things you find it eventually breaks this operation which requires the cellmap to expand when you try and get the range, but doesn't currently due to the design of RangeCore and its interaction with Spreadsheet:

 # Extracting Ranges (from existing Cells)
 r_range = sp.range('Sheet1!R1:R4')
 print('Created Range from R column', r_range.values)