Fill cells with colors using openpyxl?

I believe the issue is that you’re trying to assign a fill object to a style.

ws['A1'].fill = redFill should work fine.

Leave a Comment