excel - If statement returning #NAME error -
basically have 2 different columns; column g , h
i make if column h greater today's date coloumn g equals "g" , if column h less today's date column g equal "r" not on track
=if(h84<today,"r","g")
my return #name?
you missing (). change:
=if(h84<today,"r","g")
to
=if(h84<today(),"r","g")
Comments
Post a Comment