How to automatically input a word into one cell

Closed
Mike8989 - 15 Feb 2018 à 16:34
 Blocked Profile - 15 Feb 2018 à 16:58
Hello,

I’m having a hard time trying to figure out how to automatically input a certain word into one cell if a different cell is less than another cell.

Example

I want C1 to say “YES” if B1 is less than A1.

Any help please??
Thanks in advance!



Related:

1 response

Blocked Profile
15 Feb 2018 à 16:58
In the cell you wish to display Yes, place the following:

=If(a1>b1,"Yes","NO")

The syntax for IF is as follows:

=IF(logic_test, true ,false)

Have FUN!