Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it possible to make an IF function's logical test be whether a number is
less than or equal a certain number, but ALSO greater than a certain number? E.g. =IF(p3<=q3t3,"value if true","value if false") |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Look in the help index for AND
=if(and(p3t3,p3<=q3),1,2) -- Don Guillett Microsoft MVP Excel SalesAid Software "Excel beginner" <Excel wrote in message ... Is it possible to make an IF function's logical test be whether a number is less than or equal a certain number, but ALSO greater than a certain number? E.g. =IF(p3<=q3t3,"value if true","value if false") |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Look in the help index for AND
=if(and(p3t3,p3<=q3),1,2) -- Don Guillett Microsoft MVP Excel SalesAid Software "Excel beginner" <Excel wrote in message ... Is it possible to make an IF function's logical test be whether a number is less than or equal a certain number, but ALSO greater than a certain number? E.g. =IF(p3<=q3t3,"value if true","value if false") |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(AND(P3<=Q3,P3T3),value if true,value if false) -- Biff Microsoft Excel MVP "Excel beginner" <Excel wrote in message ... Is it possible to make an IF function's logical test be whether a number is less than or equal a certain number, but ALSO greater than a certain number? E.g. =IF(p3<=q3t3,"value if true","value if false") |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(AND(P3<=Q3,P3T3),value if true,value if false) -- Biff Microsoft Excel MVP "Excel beginner" <Excel wrote in message ... Is it possible to make an IF function's logical test be whether a number is less than or equal a certain number, but ALSO greater than a certain number? E.g. =IF(p3<=q3t3,"value if true","value if false") |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Awesome, thanks! Would I do the same for a nested IF function?
=IF(AND(P3<=Q3,P3T3),"value if true",IF(AND(P3<=R3,P3Q3,"value if true",etc. Try this: =IF(AND(P3<=Q3,P3T3),value if true,value if false) -- Biff Microsoft Excel MVP "Excel beginner" <Excel wrote in message ... Is it possible to make an IF function's logical test be whether a number is less than or equal a certain number, but ALSO greater than a certain number? E.g. =IF(p3<=q3t3,"value if true","value if false") |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Aug 9, 5:48 am, Excel beginner
wrote: Awesome, thanks! Would I do the same for a nested IF function? =IF(AND(P3<=Q3,P3T3),"value if true",IF(AND(P3<=R3,P3Q3, "value if true",etc. You could; but in Excel 2003 and earlier, there is a limit of 7 nested function calls (8, if you count the outer-most function). If "value if true" is the same value for both conditions, you could do something like: =if(or(and(P3<=Q3,P3T3), and(P3<=R3,P3Q3)), "value if true", "value if false") |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If Function Question | Excel Discussion (Misc queries) | |||
NOW function question | Excel Worksheet Functions | |||
Function Question | Excel Worksheet Functions | |||
Function question | Excel Worksheet Functions | |||
Function question | Excel Worksheet Functions |