Python Forum
Openpyxl-change value of cells in column based on value that currently occupies cells
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Openpyxl-change value of cells in column based on value that currently occupies cells
#4
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??
Reply


Messages In This Thread
RE: Openpyxl-change value of cells in column based on value that currently occupies cells - by Pedroski55 - Mar-30-2022, 05:09 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Camelot not able to change column header shortmeister1 2 641 Mar-22-2025, 04:47 AM
Last Post: Pedroski55
  getting unexpected indent errors trying to move cells up jensengt 4 1,792 Jun-28-2023, 12:05 PM
Last Post: deanhystad
  create new column based on condition arvin 12 4,154 Dec-13-2022, 04:53 PM
Last Post: jefsummers
  How to assign a value to pandas dataframe column rows based on a condition klllmmm 0 1,814 Sep-08-2022, 06:32 AM
Last Post: klllmmm
  Converting cells in excel to JSON format desmondtay 4 2,786 May-23-2022, 10:31 AM
Last Post: Larz60+
Question Change elements of array based on position of input data Cola_Reb 6 3,335 May-13-2022, 12:57 PM
Last Post: Cola_Reb
  Find last filled column in openpyxl Irv1n 2 17,300 Jan-16-2022, 11:05 AM
Last Post: Pedroski55
  gspread - applying ValueRenderOption to a range of cells dwassner 0 2,283 Jan-12-2022, 03:05 PM
Last Post: dwassner
  Python “Formula” Package: How do I parse Excel formula with a range of cells? JaneTan 1 3,507 Jul-12-2021, 11:09 AM
Last Post: jefsummers
Photo Creating column in python based on the other colums value count Bartek635 2 3,629 Apr-15-2021, 03:47 PM
Last Post: Bartek635

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020