I am currently using openpyxlexcel to modify specific cells. I can easily change the font styles, just simple:
ws['A1'].font = Font(color=colors.White)
But I can’t change the filling of a specific cell. Does anyone know any documentation on how to do this? I want to just change the color of one cell, so what other packages are needed?
I tried to learn some other things, such as PatternFill, but I couldn’t get exactly what I was looking for. All I need to do is change the fill color in one cell.
source
share