You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 26, 2022. It is now read-only.
For me, it is somehow annoying that Sheet.Cells(0, 0) is the upper left cell instead of Sheet.Cells(1, 1).
Feels counterintuitive.
Maybe you could have some workbook flag where you can decide if you want to start from 0,0 (to ensure compatibility for existing projects) or using 1,1 (like it is also in Excel VBA).
For me, it is somehow annoying that Sheet.Cells(0, 0) is the upper left cell instead of Sheet.Cells(1, 1).
Feels counterintuitive.
Maybe you could have some workbook flag where you can decide if you want to start from 0,0 (to ensure compatibility for existing projects) or using 1,1 (like it is also in Excel VBA).
Workbook.ZeroBasedCoords = False/True
or:
Workbook.CellIndexBase = 0 / 1
The text was updated successfully, but these errors were encountered: