python - Locating merged cell ranges in pyopenxl -
i'm working on extracting data .xlsx
file using pyopenxl , pandas.
i can't find cell property (or indeed other information) indicates can find out cells merged in spreadsheets. how know cells merged together?
merged cells don't exist keep track of them.
'a1' in ws.merged_cells
if want know ranges merged can examine merged_cell_ranges
worksheet attribute.
Comments
Post a Comment