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
Hello
I need to select a range of cells, but the code is not selecting any range.
After running the code, the cell A1 is selected, but the entire range of cells is not selected.
Could you please take a look.
Thank You
Here is the full code:
String myfile = 'C:/test/myfile.xlsx'; var bytes = File(myfile).readAsBytesSync(); var excel = Excel.decodeBytes(bytes); Sheet sheetObj = excel['Sheet1']; var rowsMax = sheetObj.maxRows; var columnsMax = sheetObj.maxColumns; sheetObj.selectRangeValues(CellIndex.indexByColumnRow(columnIndex: 0,rowIndex: 0), end: CellIndex.indexByColumnRow(columnIndex: columnsMax, rowIndex: rowsMax)); List<int>? fileBytes = excel.save(); if (fileBytes != null) { File(join(myfile)) ..createSync(recursive: true) ..writeAsBytesSync(fileBytes); }
The text was updated successfully, but these errors were encountered:
Hello! Could you please reply. There is no response for one month. Thank You
Sorry, something went wrong.
No branches or pull requests
Hello
I need to select a range of cells, but the code is not selecting any range.
After running the code, the cell A1 is selected, but the entire range of cells is not selected.
Could you please take a look.
Thank You
Here is the full code:
The text was updated successfully, but these errors were encountered: