Yes/No Function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Looking to get a formula for the following scenerio:

if H1 is greater than I1, then J1 is "Yes" and of not J1 is "No"
 
In J1 put

=IF(AND(ISNUMBER(H1),H1>I1),"Yes","No")

if you are 100% sure H1 can never be text (text is always greater than
numbers in Excel) you can simplify to

=IF(H1>I1,"Yes","No")
 
You just gave the formula! ;) In cell J1, enter =IF(H1>I1,"Yes","No")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top