roo-rb / roo

Roo provides an interface to spreadsheets of several sorts.
MIT License
2.78k stars 502 forks source link

Accessing named cells #408

Open edusantana opened 6 years ago

edusantana commented 6 years ago

We can give name for cells and ranges (https://help.libreoffice.org/Calc/Naming_Cells).

It would be nice if we could access it by its name, if the first cell wound named tax_rate:

sheet.cell(1,1)
sheet.cell('A',1)
sheet.cell(1,'A')
sheet.a1
sheet.named_cell('tax_rate')
tgturner commented 5 years ago

@edusantana Please feel free to open a PR for this!

TranBaVinhSon commented 5 years ago

@tgturner Does roo support this feature?