通过python的openpyxl库,实现公式条件格式。
实现内容:D列单元格不等于E列同行单元格时标红。
#重点是formula=后面的公式不需要"="号。
python
from openpyxl.styles import Color, PatternFill, Font, Border
from openpyxl.styles.differential import DifferentialStyle
from openpyxl.formatting.rule import ColorScaleRule, CellIsRule, FormulaRule, Rule
redFill = PatternFill(start_color='EE1111',
end_color='EE1111',
fill_type='solid')
#重点是formula=后面的公式不需要"="号。
ws.conditional_formatting.add('D3:E7',FormulaRule(formula=['$D3<>$E3'],stopIfTrue=True,fill=redFill))
官方文档参考:条件格式 --- openpyxl 3.0.5 文档