Skip to main content

get_rows

Function get_rows 

Source
pub fn get_rows(
    ws: &WorksheetXml,
    sst: &SharedStringTable,
) -> Result<Vec<(u32, Vec<(u32, CellValue)>)>>
Expand description

Get all rows with their data from a worksheet.

Returns a Vec of (row_number, Vec<(column_number, CellValue)>) tuples. Column numbers are 1-based (A=1, B=2, …). Only rows that contain at least one cell are included (sparse).