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?

enter image description here

you missing (). change:

=if(h84<today,"r","g") 

to

=if(h84<today(),"r","g") 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -