Python Xlsxwriter条件格式“包含”条件不起作用

时间:2018-12-05 08:50:16

标签: python python-3.x xlsxwriter

我正在尝试根据条件格式化某些单元格。问题是“包含”条件根本不起作用。我看了一下源代码,但是公式似乎是正确的。

worksheet.conditional_format('C2:C1500', {'type': 'text',
                                          'criteria': 'containing',
                                          'value': 'someString',
                                          'format': format1})

预先感谢

1 个答案:

答案 0 :(得分:1)

它应该起作用:

T

输出:

enter image description here