Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hey guys this one works great but how do I add in the letters I am looking
for too? Like with this string I also need a 1 displayed if the letter a is displayed? =IF(ISNUMBER(G7),IF(TRUNC(G7)=G7,IF(AND(G7=1,G7<= 7),1,0),0),0) Any suggestions would be great! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Turn the last 0 (i.e the FALSE part of the ISNUMBER function) into another IF
statement: =IF(ISNUMBER(G7),IF(TRUNC(G7)=G7,IF(AND(G7=1,G7<= 7),1,0),0),IF(G7="A",1,0)) This will return 1 for both 'a' and 'A'. If you want to check other for other characters change G7="A" into something like OR(G7="A",G7="B",G7="C") "mndpy" wrote: Hey guys this one works great but how do I add in the letters I am looking for too? Like with this string I also need a 1 displayed if the letter a is displayed? =IF(ISNUMBER(G7),IF(TRUNC(G7)=G7,IF(AND(G7=1,G7<= 7),1,0),0),0) Any suggestions would be great! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks! THat worked great! I appreciate the help!
"Darren Bartrup" wrote: Turn the last 0 (i.e the FALSE part of the ISNUMBER function) into another IF statement: =IF(ISNUMBER(G7),IF(TRUNC(G7)=G7,IF(AND(G7=1,G7<= 7),1,0),0),IF(G7="A",1,0)) This will return 1 for both 'a' and 'A'. If you want to check other for other characters change G7="A" into something like OR(G7="A",G7="B",G7="C") "mndpy" wrote: Hey guys this one works great but how do I add in the letters I am looking for too? Like with this string I also need a 1 displayed if the letter a is displayed? =IF(ISNUMBER(G7),IF(TRUNC(G7)=G7,IF(AND(G7=1,G7<= 7),1,0),0),0) Any suggestions would be great! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Tue, 11 Sep 2007 09:10:04 -0700, mndpy
wrote: Hey guys this one works great but how do I add in the letters I am looking for too? Like with this string I also need a 1 displayed if the letter a is displayed? =IF(ISNUMBER(G7),IF(TRUNC(G7)=G7,IF(AND(G7=1,G7< =7),1,0),0),0) Any suggestions would be great! =--OR(G7={1,2,3,4,5,6,7,"a"}) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
steps needed for freezing headers when using multiple pages | Excel Discussion (Misc queries) | |||
Help needed replacing multiple cells from a list of values. | Excel Discussion (Misc queries) | |||
Multiple Task needed in Excel | Excel Discussion (Misc queries) | |||
Multiple Condition Help needed.... | Excel Worksheet Functions | |||
Multiple condition help needed | Excel Worksheet Functions |