I'd like to create a table with checkboxes:
I've found how to do that for specific column, e.g. for F column:
Text is exactly FALSE
Custom formula is =(TODAY()-F1>0)+FALSE
But when I try to create conditional formatting for multiple columns - it is still based on F1 value
How to make it work for all columns based on the first cell of the same column
green color custom formula:
=F$2=TRUE
red color custom formula:
=(F$2=FALSE)*(F$1<=TODAY())
green color custom formula:
=A2=TRUE
red color custom formula
=(A2=FALSE)*(A$1<=TODAY())