G Guest Apr 9, 2007 #1 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"
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"
P Peo Sjoblom Apr 9, 2007 #2 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")
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")
O omnicrondelicious Apr 9, 2007 #3 You just gave the formula! In cell J1, enter =IF(H1>I1,"Yes","No")
G Guest Apr 9, 2007 #4 thanks for your help [email protected] said: You just gave the formula! In cell J1, enter =IF(H1>I1,"Yes","No") Click to expand...
thanks for your help [email protected] said: You just gave the formula! In cell J1, enter =IF(H1>I1,"Yes","No") Click to expand...