You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final bytes =File(filePath).readAsBytesSync();
final excel =Excel.decodeBytes(bytes);
final defaultSheet =await excel.getDefaultSheet();
final sheet = excel[defaultSheet];
// Cell B1 is 60 herefinal widthCell = sheet.cell(CellIndex.indexByColumnRow(columnIndex:1, rowIndex:0));
// But now it is nullprint(widthCell.value);
There is code in cell() on line 104 and 105 of sheet.dart that seems to be causing this. It seems that is just isn't carrying the value over. Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Pretty strange issue here. This is my code. I'm essentially parsing a table
Test Upload.xlsx
There is code in
cell()
on line 104 and 105 ofsheet.dart
that seems to be causing this. It seems that is just isn't carrying the value over. Am I doing something wrong?The text was updated successfully, but these errors were encountered: