Hi,
The following code gives me an error "Unable to get MyData range's sheet name".
- int isOpen = excelopen( "P:\\Support\\test.xlsx" );
- if(isOpen)
- {
- string sheetName = excelgetrangesheet( "MyData" );
- excelclose(0);
- return sheetName;
- }
- else
- {
- return "Could not open workbook.";
- }
I used this spreadsheet for testing and expected to get "TestSheet" back: testxlsx.zip.
Am I correct that this is a bug?