Aug-28-2022, 07:53 AM
Hi,
I'm trying to figure out how to apply the conditional formating on complete specifc colums (J to M here) in an Excel file using Pandas; the only way I've found so fat is to explicitley indicate the range as bellow: what's the right syntax (all my trials failed)?
Thanks
Paul
I'm trying to figure out how to apply the conditional formating on complete specifc colums (J to M here) in an Excel file using Pandas; the only way I've found so fat is to explicitley indicate the range as bellow: what's the right syntax (all my trials failed)?
Thanks
Paul
worksheet.conditional_format('J1:M1357', {'type': 'cell', 'criteria': '>', 'value': MyVal, 'format': MyFormat})