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

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -