Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
ISNUMBER is not working because the value is alpha numeric. for example --
E456 Thanks Gary "Bob Phillips" wrote in message ... Keep it simple =IF(ISNUMBER(A3),"X",IF(A3="Y","")) what about if not a number and not Y? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... Ok.....this is what am trying to do. If A3=alpha numeric,"X", if A3=text,"Y", Blank any ideas? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That is exactly the point I was making, it is not a number, not Y, so what
do you want the formula to return in this case? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... ISNUMBER is not working because the value is alpha numeric. for example -- E456 Thanks Gary "Bob Phillips" wrote in message ... Keep it simple =IF(ISNUMBER(A3),"X",IF(A3="Y","")) what about if not a number and not Y? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... Ok.....this is what am trying to do. If A3=alpha numeric,"X", if A3=text,"Y", Blank any ideas? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
all i wanna do is. if A3 has an alpha numeric value(E344) then the cell
should return X. if A3 has text then it should return Y "Bob Phillips" wrote in message ... That is exactly the point I was making, it is not a number, not Y, so what do you want the formula to return in this case? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... ISNUMBER is not working because the value is alpha numeric. for example -- E456 Thanks Gary "Bob Phillips" wrote in message ... Keep it simple =IF(ISNUMBER(A3),"X",IF(A3="Y","")) what about if not a number and not Y? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... Ok.....this is what am trying to do. If A3=alpha numeric,"X", if A3=text,"Y", Blank any ideas? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Then all you need is
=IF(ISNUMBER(A3),"X","Y") -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... all i wanna do is. if A3 has an alpha numeric value(E344) then the cell should return X. if A3 has text then it should return Y "Bob Phillips" wrote in message ... That is exactly the point I was making, it is not a number, not Y, so what do you want the formula to return in this case? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... ISNUMBER is not working because the value is alpha numeric. for example -- E456 Thanks Gary "Bob Phillips" wrote in message ... Keep it simple =IF(ISNUMBER(A3),"X",IF(A3="Y","")) what about if not a number and not Y? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... Ok.....this is what am trying to do. If A3=alpha numeric,"X", if A3=text,"Y", Blank any ideas? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
its not working bob....i want X if the value in A3 is like E344 or F678 etc.
ISNUMBER is not taking it as a number. Thanks for the help. "Bob Phillips" wrote in message ... Then all you need is =IF(ISNUMBER(A3),"X","Y") -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... all i wanna do is. if A3 has an alpha numeric value(E344) then the cell should return X. if A3 has text then it should return Y "Bob Phillips" wrote in message ... That is exactly the point I was making, it is not a number, not Y, so what do you want the formula to return in this case? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... ISNUMBER is not working because the value is alpha numeric. for example -- E456 Thanks Gary "Bob Phillips" wrote in message ... Keep it simple =IF(ISNUMBER(A3),"X",IF(A3="Y","")) what about if not a number and not Y? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Gary" wrote in message ... Ok.....this is what am trying to do. If A3=alpha numeric,"X", if A3=text,"Y", Blank any ideas? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Gary wrote: all i wanna do is. if A3 has an alpha numeric value(E344) then the cell should return X. if A3 has text then it should return Y Hi Gary As far as Excel is concerned, E344 is text. If your alpha numerics are always the same format (i.e the second character is a number), you can try: =IF(ISNUMBER(MID(A3,2,1)*1),"X","Y") Regards Steve |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
wow steve..i tried MID but dint do *1.
it worked...thanks a ton "Scoops" wrote in message oups.com... Gary wrote: all i wanna do is. if A3 has an alpha numeric value(E344) then the cell should return X. if A3 has text then it should return Y Hi Gary As far as Excel is concerned, E344 is text. If your alpha numerics are always the same format (i.e the second character is a number), you can try: =IF(ISNUMBER(MID(A3,2,1)*1),"X","Y") Regards Steve |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
"Gary" skrev i en meddelelse
... all i wanna do is. if A3 has an alpha numeric value(E344) then the cell should return X. if A3 has text then it should return Y Hi Gary Maybe this one: =IF(ISNUMBER(A3)+(A3=""),"",IF(MIN(LEN(SUBSTITUTE( A3,{0,1,2,3,4,5,6,7,8,9},"")))<LEN(A3),"X","Y")) -- Best regards Leo Heuser Followup to newsgroup only please. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Imported Data creates blank cells that aren't really blank | Excel Worksheet Functions | |||
enter numbers in blank cells | Excel Worksheet Functions | |||
Counting blank and filled cells within a range. | Excel Discussion (Misc queries) | |||
blank cells | Excel Discussion (Misc queries) | |||
VLOOKUP, OFFSET, MATCH PROBLEM, HELP? | Excel Worksheet Functions |