dmitry-a-morozov opened this issue 10 years ago · 2 comments
Hi, Selecting specific sheet from *.xlsx file doesn't work.
When I access first spreadsheet in the same file it works
type Sheet1 = ExcelFile< @"..\FileStorage\test.xlsx", "Sheet1"> //or //type Sheet = ExcelFile< @"..\FileStorage\test.xlsx">
I found that adding an exclamation mark is a workaround:
type Sheet = ExcelFile< @"c:\temp\Library2\test.xlsx", "Sheet2!" >
Thanks. It works.