Skip to content

Nebb v0.1.1

Compare
Choose a tag to compare
@CHRISCARLON CHRISCARLON released this 18 Sep 17:54
· 28 commits to main since this release

Release notes for version 0.1.1

  • Fixed sheet iteration issue for display_remote_basic_info function.

// Loop through sheets for (index, sheet_name) in sheet_names.iter().enumerate() { if let Some(Ok(range)) = workbook.worksheet_range_at(index)

Needed to ensure that the correct index was set:

workbook.worksheet_range_at(index)

instead of 'workbook.worksheet_range_at[0] - which meant that you would iterate through the sheet names but only access info from the first sheet.