Posts by Junos • 1 point
1 post
-
-1
votes1
answer32
viewsQ: How to delete lines in openpyxl with conditions?
I’m trying to delete lines that have data repeated this way: nome = sheet['I2'].value for coluna in sheet.iter_cols(min_col=9, max_col=9, min_row=3): for celula in coluna: if celula.value == nome:…