Mar-30-2022, 05:09 AM
Something like this maybe??
wb = load_workbook('C:/Users/Me/AppData/Local/Programs/Python/Python310/March.xlsx') ws = wb.active ''' I'd like to search all cells in one column (column H) for a specific string ("OK" and "QNS") and change that "OK" to "In Inventory" and "QNS" to "Exhausted". ''' for rowNum in range(2, ws.max_row): state = ws.cell(row=rowNum, column=8).value if state == 'OK': ws.cell(row=rowNum, column=8, value='In Inventory') elif state == 'QNS': ws.cell(row=rowNum, column=8, value='(I am) Exhausted')Why bother putting OK or QNS in the first place??