Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upSpreadsheets: Sophisticated references #640
Open
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature suggestion
Description
Please add alternative coordinates to the hardcoded
CellReference
, orMergeCell.Reference
etc.Ideally, there should be few more types like:
ColumnReference { int Index, string ColumnName }
(e.g.A
as inA1
).Should provide easy casting between both
string
andint
RowReference { int index }
(e.g.1
as inA1
)CellReference { ColumnReference Column, RowReference Row }
(e.g.ABC123
)Range { CellReference Start , CellReference End }
(e.g. A1:A32)Also need to accommodate for
A:A
.Would you consider that? I'm willing to contribute.