We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please attach your issue file by dragging or droppng, selecting or pasting them. test.xlsx
1.34.2
When I use QueryRange with an invalid cell address, I expect MiniExcel to throw an System.IO.InvalidDataException
System.IO.InvalidDataException
Using cell address "ZZDD11" throws System.IO.InvalidDataException : ColumnIndex 474659 over excel vaild max index.
However when I use a cell address like "ZZFF@@10", it returns the header row values.
Sample code:
var row2 = MiniExcel .QueryRange( "test.xlsx", useHeaderRow: false, startCell: "ZZFF@@10", endCell: "ZZFF@@10") .Cast<IDictionary<string, object>>().First();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Excel Type
Upload Excel File
Please attach your issue file by dragging or droppng, selecting or pasting them.
test.xlsx
MiniExcel Version
1.34.2
Description
When I use QueryRange with an invalid cell address, I expect MiniExcel to throw an
System.IO.InvalidDataException
Using cell address "ZZDD11" throws System.IO.InvalidDataException : ColumnIndex 474659 over excel vaild max index.
However when I use a cell address like "ZZFF@@10", it returns the header row values.
Sample code:
The text was updated successfully, but these errors were encountered: