Is there a non-macro "in between" function that uses only one argument?
eg.
If A1 is greater than 10 and less than 50, return YES.
I know I can use:
if(and(A1>10,A1<50),"yes","no")
or
if((A1>10)*(A1<50),"yes","no)
however, in both situations it uses 2 arguments and there is a limit to 8 argumnets per function - I am trying to put together a longer formula
Any ideas? All help is appreciated.
Bookmarks