I need advice on setting styles in Openpyxl.

I see that the NumberFormat of a cell can be set, but I also require setting of font colors and attributes (bold etc). There is a style.py class but it seems I can't set the style attribute of a cell, and I don't really want to start tinkering with the openpyxl source code.

Has anyone found a solution to this? If there are any other Python excel renderers with .xlsx and >65,000 row capacity (large docs), that also have a good style implementation please let me know.

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

I have never been able to successfully set text colors with openpyxl (currently using version 1.5.6... see EDIT below); however, I have been successful getting these cell styles to apply...

from openpyxl.reader.excel import load_workbook
from openpyxl.workbook import Workbook
from openpyxl.style import Color, Fill
from openpyxl.cell import Cell

# Load the workbook...
book = load_workbook('foo.xlsx')

# define ws here, in this case I pick the first worksheet in the workbook...
#    NOTE: openpyxl has other ways to select a specific worksheet (i.e. by name)
ws = book.worksheets[0]

## ws is a openpypxl worksheet object
_cell = ws.cell('C1')

# Font properties
_cell.style.font.name = 'Arial'
_cell.style.font.size = 8
_cell.style.font.bold = True
_cell.style.alignment.wrap_text = True

# Cell background color
_cell.style.fill.fill_type = Fill.FILL_SOLID
_cell.style.fill.start_color.index = Color.DARKRED

FYI, you can find the names of the colors in openpyxl/style.py... I sometimes I patch in extra colors from the X11 color names

class Color(HashableObject):
    """Named colors for use in styles."""
    BLACK = 'FF000000'
    WHITE = 'FFFFFFFF'
    RED = 'FFFF0000'
    DARKRED = 'FF800000'
    BLUE = 'FF0000FF'
    DARKBLUE = 'FF000080'
    GREEN = 'FF00FF00'
    DARKGREEN = 'FF008000'
    YELLOW = 'FFFFFF00'
    DARKYELLOW = 'FF808000'

EDIT

As mentioned in a comment below, you can set colors now in openpyxl 1.5.7...

_cell.style.font.color.index = Color.GREEN
link|improve this answer
Thanks, I would vote you up but I don't have the reputation! – Nelson Shaw Dec 11 '11 at 22:00
1  
Now you can add font color's as: _cell.style.font.color.index = Color.GREEN – Adam Feb 18 at 23:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.