我有一个熊猫数据框,看起来如屏幕截图所示。如果列“ B”的值为“总计”,我想使用xlsxwriter应用条件格式以使列“ C”的值变为粗体。 下面的代码似乎不起作用
bold = workbook.add_format({'bold': True})
l = ['C3:C500']
for columns in l:
worksheet.conditional_format(columns, {'type': 'text',
'criteria': 'containing',
'value': 'Total',
'font_color': "gray"})
这是我更新的代码:
l = ['C3:C500']
for columns in l:
worksheet.conditional_format(columns, {'type': 'formula',
'criteria': '=$B3="Total"',
'format': bold})
worksheet.conditional_format(columns, {'type': 'formula',
'criteria': '=$B3!="Total"',
'font_color': "gray"})
答案 0 :(得分:1)
在XlsxWriter中使用条件格式的关键是先弄清楚您要在Excel中做什么。
在这种情况下,如果要基于另一个单元格中的值格式化单元格,则需要使用“公式”条件格式类型。您还需要确保正确获得范围和绝对值(带有$符号的值)。
这是一个基于您的代码的有效示例:
import xlsxwriter
workbook = xlsxwriter.Workbook('conditional_format.xlsx')
worksheet = workbook.add_worksheet()
worksheet.write('B3', 'Total')
worksheet.write('B4', 'Foo')
worksheet.write('B5', 'Bar')
worksheet.write('B6', 'Total')
worksheet.write('C3', 'Yes')
worksheet.write('C4', 'Yes')
worksheet.write('C5', 'Yes')
worksheet.write('C6', 'Yes')
bold = workbook.add_format({'bold': True})
l = ['C3:C500']
for columns in l:
worksheet.conditional_format(columns, {'type': 'formula',
'criteria': '=$B3="Total"',
'format': bold})
workbook.close()
输出: