Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sample text
TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In B2, add
=IF(ISNUMBER(A3,A3,"") and copy down. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "falcios" wrote in message ... Sample text TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Bob
I copied the function on B2 and I got an error. I am not familiar with this function. If my text starts in cell A1 what should the function line read. "Bob Phillips" wrote: In B2, add =IF(ISNUMBER(A3,A3,"") and copy down. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "falcios" wrote in message ... Sample text TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNUMBER(A1),A1,"")
(Bob missed a closing paren.) falcios wrote: Thanks Bob I copied the function on B2 and I got an error. I am not familiar with this function. If my text starts in cell A1 what should the function line read. "Bob Phillips" wrote: In B2, add =IF(ISNUMBER(A3,A3,"") and copy down. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "falcios" wrote in message ... Sample text TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops, put this in A1:
=IF(ISNUMBER(A2),A2,"") falcios wrote: Thanks Bob I copied the function on B2 and I got an error. I am not familiar with this function. If my text starts in cell A1 what should the function line read. "Bob Phillips" wrote: In B2, add =IF(ISNUMBER(A3,A3,"") and copy down. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "falcios" wrote in message ... Sample text TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sigh.
Put this in B1: =IF(ISNUMBER(A2),A2,"") Dave Peterson wrote: Oops, put this in A1: =IF(ISNUMBER(A2),A2,"") falcios wrote: Thanks Bob I copied the function on B2 and I got an error. I am not familiar with this function. If my text starts in cell A1 what should the function line read. "Bob Phillips" wrote: In B2, add =IF(ISNUMBER(A3,A3,"") and copy down. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "falcios" wrote in message ... Sample text TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks -- Dave Peterson -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Dave it worked.
Sorry but I have another question. Now I have duplicate numbers in my worksheet. How I do remove the rows with the numbers under the text starting at A2. Thanks. "Dave Peterson" wrote: Sigh. Put this in B1: =IF(ISNUMBER(A2),A2,"") Dave Peterson wrote: Oops, put this in A1: =IF(ISNUMBER(A2),A2,"") falcios wrote: Thanks Bob I copied the function on B2 and I got an error. I am not familiar with this function. If my text starts in cell A1 what should the function line read. "Bob Phillips" wrote: In B2, add =IF(ISNUMBER(A3,A3,"") and copy down. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "falcios" wrote in message ... Sample text TEST123 $100 TEST124 $200 TEST125 $300 How can I put the dollar amount values in a separate column [column b] on the same line as text. Thanks -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text entries behaving like numbers | Excel Discussion (Misc queries) | |||
Aligning Wraped Text to the bottom of a cell | Excel Discussion (Misc queries) | |||
Conversion to Text file format error | Excel Discussion (Misc queries) | |||
How change dimensions of data label text box in pie chart? | Charts and Charting in Excel | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) |