Python Forum
insert row and write to xlsx in python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
insert row and write to xlsx in python
#1
I had assumed inserting a row and writing to an xlsx file in python would be fairly simple, though i am struggling to actualize the results I had intended.

the variable values I am trying to write into the sheet are printing fine, so it appears just to be a matter of my capacity to successfully use openpyxl.

I have tried running the code with the workbook open and closed, but neither of the attempts seem to be printing to the single active sheet in the workbook.


gdx_wkbk = openpyxl.load_workbook("GDX_chain.xlsx")
    gdx_sht = gdx_wkbk.active
    gdx_sht.insert_rows(2)
    gdx_sht["A2"] = datetime.today().strftime('%m-%d-%Y')
    gdx_sht["B2"] = oi_call_sum
    gdx_sht["C2"] = oi_put_sum
    gdx_sht["D2"] = vol_call_sum
    gdx_sht["E2"] = vol_put_sum
    gdx_wkbk.save('GDX_chain.xlsx')
Shocked
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 1,426 Nov-09-2023, 10:56 AM
Last Post: mg24
  Insert 10gb csv files into sql table via python mg24 2 1,899 Apr-28-2023, 04:14 PM
Last Post: snippsat
  Python Serial: How to read the complete line to insert to MySQL? sylar 1 817 Mar-21-2023, 10:06 PM
Last Post: deanhystad
  python insert blank line in logger mg24 1 2,822 Nov-02-2022, 08:36 AM
Last Post: snippsat
  Insert a multiple constant value after header in csv file using python shantanu97 1 1,142 Apr-24-2022, 10:04 AM
Last Post: Pedroski55
  Insert into mysql through python LaKhWaN 0 1,939 Aug-26-2020, 04:54 AM
Last Post: LaKhWaN
  How do I insert images in Python using gspread (or any other package)? ivansing23 0 2,256 Jul-27-2020, 01:26 PM
Last Post: ivansing23
  Write tables from Word (.docx) to Excel (.xlsx) using xlsxwriter jackie 1 3,198 May-27-2020, 11:47 PM
Last Post: mcmxl22
  Insert a variable in a Python > Cellular AT command ElectronicsNut 1 2,073 Jul-07-2019, 02:26 PM
Last Post: joe_momma
  Python 3 MySQL database insert error georgian2all 7 8,317 Aug-01-2017, 06:37 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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