ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Removing Dashes in Excel (https://www.excelbanter.com/excel-programming/444299-removing-dashes-excel.html)

Robert Cooper

Removing Dashes in Excel
 
In Excel 2007 I am regularly importing information about bonds. The
import includes dashes in the CUSIP number. Is there a way to import
into Excel 2007 eliminating the dashes? I will the copy and paste the
information into Bloomberg and Bloomberg does not recognize the
dashes. I know how to eliminate the dashes following the import. I
am trying to eliminate that step as we will be doing this daily.

Dave Peterson[_2_]

Removing Dashes in Excel
 
Can you just import it with the dashes and then do an Edit|Replace to remove
those dashes (select the area first!)?

On 03/02/2011 10:42, Robert Cooper wrote:
In Excel 2007 I am regularly importing information about bonds. The
import includes dashes in the CUSIP number. Is there a way to import
into Excel 2007 eliminating the dashes? I will the copy and paste the
information into Bloomberg and Bloomberg does not recognize the
dashes. I know how to eliminate the dashes following the import. I
am trying to eliminate that step as we will be doing this daily.


--
Dave Peterson

Robert Cooper

Removing Dashes in Excel
 
On Mar 2, 4:12*pm, Dave Peterson wrote:
Can you just import it with the dashes and then do an Edit|Replace to remove
those dashes (select the area first!)?

On 03/02/2011 10:42, Robert Cooper wrote:

In Excel 2007 I am regularly importing information about bonds. *The
import includes dashes in the CUSIP number. *Is there a way to import
into Excel 2007 eliminating the dashes? *I will the copy and paste the
information into Bloomberg and Bloomberg does not recognize the
dashes. *I know how to eliminate the dashes following the import. *I
am trying to eliminate that step as we will be doing this daily.


--
Dave Peterson


It looks like that is going to be the answer. I was hoping to
eliminate a step because this is going to be a daily and sometimes
several times a day process. Thanks.

Gord Dibben[_2_]

Removing Dashes in Excel
 
Try the macro recorder to import the data then remove the dashes.

Assign the macro to a button.

You can probably also add the copy and paste to Bloomberg steps in the same
macro.


Gord Dibben MS Excel MVP


On Wed, 2 Mar 2011 14:18:03 -0800 (PST), Robert Cooper
wrote:

On Mar 2, 4:12*pm, Dave Peterson wrote:
Can you just import it with the dashes and then do an Edit|Replace to remove
those dashes (select the area first!)?

On 03/02/2011 10:42, Robert Cooper wrote:

In Excel 2007 I am regularly importing information about bonds. *The
import includes dashes in the CUSIP number. *Is there a way to import
into Excel 2007 eliminating the dashes? *I will the copy and paste the
information into Bloomberg and Bloomberg does not recognize the
dashes. *I know how to eliminate the dashes following the import. *I
am trying to eliminate that step as we will be doing this daily.


--
Dave Peterson


It looks like that is going to be the answer. I was hoping to
eliminate a step because this is going to be a daily and sometimes
several times a day process. Thanks.


Bob Flanagan[_4_]

Removing Dashes in Excel
 
On Mar 2, 11:16*pm, Gord Dibben wrote:
Try the macro recorder to import the data then remove the dashes.

Assign the macro to a button.

You can probably also add the copy and paste to Bloomberg steps in the same
macro.

Gord Dibben * * MS Excel MVP

On Wed, 2 Mar 2011 14:18:03 -0800 (PST), Robert Cooper
wrote:



On Mar 2, 4:12 pm, Dave Peterson wrote:
Can you just import it with the dashes and then do an Edit|Replace to remove
those dashes (select the area first!)?


On 03/02/2011 10:42, Robert Cooper wrote:


In Excel 2007 I am regularly importing information about bonds. The
import includes dashes in the CUSIP number. Is there a way to import
into Excel 2007 eliminating the dashes? I will the copy and paste the
information into Bloomberg and Bloomberg does not recognize the
dashes. I know how to eliminate the dashes following the import. I
am trying to eliminate that step as we will be doing this daily.


--
Dave Peterson


It looks like that is going to be the answer. *I was hoping to
eliminate a step because this is going to be a daily and sometimes
several times a day process. * Thanks.- Hide quoted text -


- Show quoted text -


You could use a statement like one of the following:

Columns("A").Replace What:=" - ", Replacement:=" ",
LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False,
_
ReplaceFormat:=False

Columns("A").Replace What:="-", Replacement:=" ", LookAt:=xlPart,
_
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False,
_
ReplaceFormat:=False

Columns("A").Replace What:="-", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False,
_
ReplaceFormat:=False

depending on what replacement results you want.

Robert Flanagan
Add-ins.com LLC
144 Dewberry Drive
Hockessin, Delaware, U.S. 19707

Phone: 302-234-9857, fax 302-234-9859
http://www.add-ins.com
Productivity add-ins and downloadable books on VB macros for Excel


All times are GMT +1. The time now is 12:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com