Is there a way to test with an IF statement if a cell has is empty or "is not" a number? Thanks! Amy
C cvgairport Jul 25, 2006 #1 Is there a way to test with an IF statement if a cell has is empty or "is not" a number? Thanks! Amy
D Dave Peterson Jul 25, 2006 #2 =if(a1="","It looks empty","It looks like it's not empty") You can use: =if(isnumber(a1), ... to check if it's a number. or =if(istext(a1), ... to check to see if it's text.
=if(a1="","It looks empty","It looks like it's not empty") You can use: =if(isnumber(a1), ... to check if it's a number. or =if(istext(a1), ... to check to see if it's text.
D David Biddulph Jul 25, 2006 #5 That probably means that it's not blank, but has an empty string "", which isn't the same. David Biddulph
That probably means that it's not blank, but has an empty string "", which isn't the same. David Biddulph