Home > Back-end >  How to change the value of google sheet cell based on the specific value of another cell
How to change the value of google sheet cell based on the specific value of another cell

Time:12-06

I am absolutely new to this and searching desperately to an answer to following task:

If the date of cell E2 has arrived cell H2 updates itself to "valid" and if date of cell F2 has arrived Cell H2 updates itself to "invalid"

enter image description here

CodePudding user response:

Try

=IF(isdate(E2);"valid";if(isdate(F2);"invalid";))

in Cell H2

If E2 is a date, it will return "valid"

If not, it will check F2

If F2 is a date, it will return "invalid"

  • Related