Python Forum
[Solved] Formatting cells of a pandas dataframe into an OpenDocument ods spreadsheet
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved] Formatting cells of a pandas dataframe into an OpenDocument ods spreadsheet
#1
Question 
I am generating an OpenDocument spreadsheet file. I can create the file without issue, but without any formatting.

I would like to add formatting, such as bolding the top row and changing the color of negative cells.

Using documentation I found online, I found code that works with an Excel spreadsheet, but not an OpenDoc spreadsheet.

My code:
    with pd.ExcelWriter(path=odf_file,
                        engine='odf',
                        ) as writer:
        df_new_data.to_excel(writer, 
                             index=False, 
                             sheet_name=sheet_name,)
        workbook = writer.book
        worksheet = writer.sheets[sheet_name]
                
        bold_format = workbook.add_format({'bold': True})
        worksheet.set_row(0,0, bold_format)
This fails with the following error:
AttributeError: 'OpenDocument' object has no attribute 'add_format'

So, it looks like the odf engine works differently than the xlsxwriter engine. I can't find any documentation for the odf engine, so I don't know how to apply formatting.

I would just use the xlsxwriter engine, but I need to be able to open the file with OpenOffice, which doesn't seem to work.

Can someone point me in the right direction?
Reply
#2
(Feb-27-2025, 04:43 AM)Calab Wrote: I am generating an OpenDocument spreadsheet file. I can create the file without issue, but without any formatting.

I would like to add formatting, such as bolding the top row and changing the color of negative cells.

I was unable to find any way to format an .ods file so I switched to the openpyxl engine and will use LibreOffice to work on the resulting file as it supports the .xlsx file format for reading and writing, unlike OpenOffice.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Find duplicates in a pandas dataframe list column on other rows Calab 2 1,868 Sep-18-2024, 07:38 PM
Last Post: Calab
  Find strings by index from a list of indexes in a different Pandas dataframe column Calab 3 1,526 Aug-26-2024, 04:52 PM
Last Post: Calab
  Add NER output to pandas dataframe dg3000 0 1,100 Apr-22-2024, 08:14 PM
Last Post: dg3000
  HTML Decoder pandas dataframe column mbrown009 3 2,545 Sep-29-2023, 05:56 PM
Last Post: deanhystad
  [solved] duplication in pandas BSDevo 0 1,010 Sep-06-2023, 10:47 PM
Last Post: BSDevo
  Use pandas to obtain cartesian product between a dataframe of int and equations? haihal 0 1,953 Jan-06-2023, 10:53 PM
Last Post: haihal
  Pandas Dataframe Filtering based on rows mvdlm 0 2,023 Apr-02-2022, 06:39 PM
Last Post: mvdlm
  Pandas dataframe: calculate metrics by year mcva 1 3,327 Mar-02-2022, 08:22 AM
Last Post: mcva
  Pandas dataframe comparing anto5 0 1,871 Jan-30-2022, 10:21 AM
Last Post: anto5
  PANDAS: DataFrame | Replace and others questions moduki1 2 2,568 Jan-10-2022, 07:19 PM
Last Post: moduki1

Forum Jump:

User Panel Messages

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