Hello!
I'm trying to set conditional formatting on column H cells where the cell in column A is blank. So if A5 is blank, H5 should be in bold; if A6 contains a value (in this case, a date), then H6 should not be bold.
I've tried the following formula for H:H...
...but all cells in H are in bold no matter the value in A.
I'm trying to set conditional formatting on column H cells where the cell in column A is blank. So if A5 is blank, H5 should be in bold; if A6 contains a value (in this case, a date), then H6 should not be bold.
I've tried the following formula for H:H...
Code:
=IF($A5="",TRUE,FALSE)
...but all cells in H are in bold no matter the value in A.