Conditional format

H

honyacker

I want to highlight a cell based on two conditions:
I want to highlight cell A1 if the date in cell A1 is over 14 days older
than TODAY() and cell J1 is blank.

Joe
 
S

Sloth

select "formula is" and input this formula
select the appropriate format

=(A1>TODAY()+14)*(ISBLANK(J1))
 
B

B. R.Ramachandran

Hi,

Formula Is =AND(TODAY()-$A$1>14,$J$1="")
and format as you wish.

Regards,
B. R. Ramachandran
 
Top