基于文本的openpyxl条件格式

Conditional Formatting with openpyxl based on text

我有一个使用 openpyxl 生成的电子表格,其中包含许多系统检查。基于规则;我的电子表格中的 E 列中插入了“通过”、“失败”或“信息”等词。我想使用 Openpyxl 根据通过或失败的值有条件地格式化电子表格的填充。类似绿色表示通过,红色表示失败。

我当前的 openpyxl 代码是:

wb = Workbook()
ws = wb.active
ws.freeze_panes = ws.cell('A3') 
ws.title = 'Best Practice Report for XXX'
ws['A1'] = 'Best Practice Report for XXX %s' % curdate
ws['A2'] = 'IP Address/FQDN'
ws['B2'] = 'BP Number'
ws['C2'] = 'Title'
ws['D2'] = 'Priority'
ws['E2'] = 'Status'
ws['F2'] = 'Description'
a1 = ws['A1']
a1.font = Font(size=20)
redFill = PatternFill(start_color='FFEE1111', end_color='FFEE1111', fill_type='solid')

ws.conditional_formatting.add('E4:E1000', FormatRule(text=['Fail'], stopIfTrue=True, fill=redFill))     
wb.save('bp--TESTresults.xlsx') 

我的问题是条件格式规则,我找不到任何基于单元格文本的条件格式的好例子。

更新
感谢 Charlie Clarks 的回应,我得到了这个工作。创建了两个规则如下。

ws.conditional_formatting.add('E4:E1000', FormulaRule(formula=['NOT(ISERROR(SEARCH("Pass",E4)))'], stopIfTrue=True, fill=greenFill))    
ws.conditional_formatting.add('E4:E1000', FormulaRule(formula=['NOT(ISERROR(SEARCH("Fail",E4)))'], stopIfTrue=True, fill=redFill))

我刚刚创建了一个文件并进行了一些反思。它的值在 A2:A5 我认为这应该对你有帮助:

from openpyxl import load_workbook
wb = load_workbook("Issues/cf.xlsx")
ws = wb.active
ws.conditional_formatting.cf_rules
{'A2:A5': [<openpyxl.formatting.rule.Rule object at 0x108e6dfd0>]}
rule = _['A2:A5']
rule = rule[0]
rule.type
'containsText'
rule.formula
['NOT(ISERROR(SEARCH("fail",A2)))']
rule.stopIfTrue
None
rule.operator
'containsText'