Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it possible to write a non-nested IF statement that looks something like
IF(A2=10 AND A2<100,"10-100","") or IF(a2 is between 10 and 100,"10-100","") |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
yes
"r2d3" a écrit dans le message de news: ... Is it possible to write a non-nested IF statement that looks something like IF(A2=10 AND A2<100,"10-100","") or IF(a2 is between 10 and 100,"10-100","") |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=if(and(A2=10, A2<100),"10-100","")
"r2d3" wrote: Is it possible to write a non-nested IF statement that looks something like IF(A2=10 AND A2<100,"10-100","") or IF(a2 is between 10 and 100,"10-100","") |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you.
"Duke Carey" wrote: =if(and(A2=10, A2<100),"10-100","") "r2d3" wrote: Is it possible to write a non-nested IF statement that looks something like IF(A2=10 AND A2<100,"10-100","") or IF(a2 is between 10 and 100,"10-100","") |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() You are close in your attempt. Try this: =IF(AND(A2=10,A2<=100),"10-100","") Good Luck Bruce -- swatsp0p ------------------------------------------------------------------------ swatsp0p's Profile: http://www.excelforum.com/member.php...o&userid=15101 View this thread: http://www.excelforum.com/showthread...hreadid=567952 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need help with an embedded IF statement | Excel Worksheet Functions | |||
Cell Reference with Range Name | Excel Worksheet Functions | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Reveal cell formats and extendable range in tool/statusbar/icon. | Excel Worksheet Functions | |||
Look for change next blank cell in Range | Excel Worksheet Functions |