如何在openpyxl中以条件格式排除空白单元格?

时间:2016-08-02 01:27:48

标签: python openpyxl

我在openpyxl中使用条件格式,但是却试图排除空白单元格。我有一个数字列,我用CellisRule格式化。我使用的代码如下。

find .  -name "* *"

我尝试使用FormulaRule但不知道用于公式。

更新

使用for循环工作,而不是使用条件格式。

ws2.conditional_formatting.add('C3:C25',CellIsRule(operator='lessThan', formula=['85'], stopIfTrue=True, fill=redFill,font=whiteText))

ws2.conditional_formatting.add('C3:C25',CellIsRule(operator='greaterThan', formula=['89.99'], stopIfTrue=True, fill=greenFill))

ws2.conditional_formatting.add('C3:C25',CellIsRule(operator='between', formula=['85', '89.99'], stopIfTrue=True, fill=yellowFill))

1 个答案:

答案 0 :(得分:0)

如果您正在使用公式,则应使用expression类型规则。一般来说,分别编写规则和样式总是更好:

from openpyxl import Workbook
from openpyxl.formatting.rule import Rule
from openpyxl.styles.differential import DifferentialStyle
from openpyxl.styles import Font, PatternFill

red_text = Font(color="9C0006")
red_fill = PatternFill(bgColor="FFC7CE")
dxf = DifferentialStyle(font=red_text, fill=red_fill)

r = Rule(type="expression", dxf=dxf)
r.formula = ["NOT(ISBLANK(A1))"]

wb = Workbook()
ws = wb.active

for v in range(10):
    ws.append([v])

ws['A4'] = None
ws.conditional_formatting.add("A1:A10".format(ws.max_row), r)
wb.save("sample.xlsx")