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
Bug/Request
When reading a spreadsheet, the tag should throw an error if the specified sheet name or index is invalid.
Actual Results
The workbook is successfully loaded and ["My Sheet"] is set as active.
Expected Results
An error indicating sheet "ThisDoesNotExist" was not found.
Code
<cfset filePath = "c:\myFile.xls" /> <cfset sheet = SpreadSheetNew("My Sheet") /> <cfset SpreadSheetWrite( sheet, filePath, true ) /> <cfspreadsheet action="read" src="#filePath#" sheetname="ThisDoesNotExist" name="data" /> <cfoutput>Active Sheet = #data.getActiveSheet().getSheetName()#</cfoutput>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug/Request
When reading a spreadsheet, the tag should throw an error if the specified sheet name or index is invalid.
Actual Results
The workbook is successfully loaded and ["My Sheet"] is set as active.
Expected Results
An error indicating sheet "ThisDoesNotExist" was not found.
Code
The text was updated successfully, but these errors were encountered: