我试图找到一种方法来根据第一个单元格上的值为相邻单元格设置背景填充。
例如,如果第一个单元格包含值' Apples'或者' Pears'在突出显示第一个单元格之上,我想突出显示列长度以外的其他单元格,如下所示: Highlighting Other Cells Based on First Cell] 1
我尝试使用以下代码,但它返回了无效的语法错误:
for row in len(df):
worksheet.conditional_format(row+1, 1, {'type':'cell', 'criteria':'==','value':'"Apples"', 'format': highlight, 'multi_range': row+1, 1 row_1, 1, row+1, 5})
请帮忙!
谢谢!