Python Forum
Pandas keep existing format of Excel
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pandas keep existing format of Excel
#2
Pandas knows nothing about excel formatting, but you can add formatting when you write a dataframe to an excel file. This is done by making a custom xlsx writer. XlsxWriter is a package for making custom "writers" that can be passed to to_excel().

If you know what cells changed, you can use a package like Openpyxl to open the existing excel file and modify the data of the cells, leaving the formatting alone. Looking at your example I don't see where you are getting any benefit from using Pandas. Maybe you could open the spreadheet using openpyxl, make all the changes using regular python code, and write the modified spreadsheet.

I'm a bit confused about this:
    except Exception as e:
        print(e)
This extra code only results in getting less information about errors that occur.
# End
sys.exit()
This just results in your program raising an exception and ending. Your program will end anyway because there are no instructions left to execute.
Reply


Messages In This Thread
Pandas keep existing format of Excel - by AlphaInc - Jan-01-2024, 11:25 AM
RE: Pandas keep existing format of Excel - by deanhystad - Jan-02-2024, 06:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  xlswriter(pandas) and conditional format paul18fr 1 1,276 Aug-28-2022, 07:56 AM
Last Post: paul18fr
  [Pandas] Write data to Excel with dot decimals manonB 1 6,186 May-05-2021, 05:28 PM
Last Post: ibreeden
  Python - Merge existing cells of Excel file created with xlsxwriter manonB 0 3,896 Mar-10-2021, 02:17 PM
Last Post: manonB
  Python PDF merging from an excel pandas for loop siraero 0 2,291 Aug-16-2020, 09:34 AM
Last Post: siraero
  Need Help With Filtering Data For Excel Files Using Pandas eddywinch82 9 6,587 Aug-06-2019, 03:44 PM
Last Post: eddywinch82
  How to use the excel filename as a value to populate new column, using Pandas? Dequanharrison 5 6,749 Jun-26-2019, 11:11 PM
Last Post: Dequanharrison
  pandas change row value an existing column with conditionals Gigux 1 3,058 Jun-22-2019, 08:04 PM
Last Post: Gigux
  pandas writing to excel .. help anna 0 2,182 Jun-20-2019, 06:34 AM
Last Post: anna
  How to add a dataframe to an existing excel file wendysling 2 28,526 May-09-2019, 07:00 PM
Last Post: wendysling
  Pandas melt only on one variable (leaving other in long format) amyd 0 2,047 May-08-2019, 12:10 PM
Last Post: amyd

Forum Jump:

User Panel Messages

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