Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it possible to use IF & AND function multiple time in one formula
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you post an example of what you are trying to do, I'm sure you'll get an
answer that is more tailored to what you need. *********** Regards, Ron XL2002, WinXP-Pro "p2thi" wrote: Is it possible to use IF & AND function multiple time in one formula |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(A1<5,"",IF(AND(A1=5,A1<10),"A",IF(AND(A1=10, A1<15),"B",IF(AND(A1=15,A
1<20),"C","D")))) would be an example. It would be useful to point out that this is a bad example as the evaluation of the IF function is progressive, so =if(A1<5,"",if(A1<10,"A",if(A1<15,"B",if(A1<20,"C" ,"D")))) would be sufficient. Also, note that you can not nest IF function deeper than 7 levels. A work around is shown at Chip Pearson's site http://www.cpearson.com/excel/nested.htm But usually, if this is a limitation, another method is more appropriate such as building a lookup table and using Vlookup. -- Regards, Tom Ogilvy "p2thi" wrote in message ... Is it possible to use IF & AND function multiple time in one formula |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Creating a Custom Excel Function to Calculate Gini Coefficients | Excel Worksheet Functions | |||
Date & Time | New Users to Excel | |||
Hyperlinks using R[1]C[1] and offset function in its cell referenc | Excel Worksheet Functions | |||
Conversion | Excel Worksheet Functions | |||
HOW CAN I GET OFFICE 2003 EXCEL BASIC TO NEST FUNCTIONS LIKE EXCE. | Excel Worksheet Functions |