I'm currently using openpyxl
to modify specific excel cells. I am able to modify font styles very easily, simply just:
ws['A1'].font = Font(color=colors.White)
But I am unable to change the fill of the specific cell. Anyone know any documentation about how to do this? I want to just change the color of one cell, so what other packages are required?
I tried exploring some other things like PatternFill
, but I haven't been able to accurately get what I'm looking for. All I need is to change the fill color of a single cell.