View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Can i run 2 IF statements in one formula?

You can omit the =TRUE
And you probably need <=4, rather than =4
--
David Biddulph

"John Bundy" (remove) wrote in message
...
you can, yes, but you might like validation better. Go to Data-Validation
and choose Custom, enter this formula substituting A1 as necessary
=AND(LEN(A1)=4,ISNUMBER(A1)=TRUE)
You can also have an input message telling them what is required and a
custom error message that tells them the rules.

--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"zak" wrote:

I have a column which can contain only numbers and can only be up to 4
digits
long. Is there an IF statement I can write to check for these 2
conditions?

Thanks in advance