powered by
Conditional formatting with custom differential style
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
FormulaRule( formula = NULL, stopIfTrue = NULL, font = NULL, border = NULL, fill = NULL, ... )
An openpyxl Python object.
formula
stopIfTrue
font
border
fill
Additional arguments, i.e. kwargs.
if (FALSE) { wb <- Workbook() ws <- wb$active ws$conditional_formatting$add('E1:E10', FormulaRule( formula = list('ISBLANK(A1)'), stopIfTrue=TRUE ) ) }
Run the code above in your browser using DataLab