Delimiter problem

osullj

New Member
Joined
Feb 26, 2002
Messages
5
Hi,

I work in a group of 8 people. We are moving from Outlook to Goldmine. I exported the 8 contact databases from Outlook to Excel and have been cleaning and enhancing the data in excel, eliminating duplicates, using consistent company names and so on. When fully cleaned I will import into Goldmine as a starting common database for all 8.

I have hit a problem trying to use Excel's Text to Columns feature. Many of the address records have imported into excel in one column, with  as a delimiter between address line 1 address line 2 etc. When I try to get Excel's Text to Columns to recognise this , I cannot. I can use Character MAp to get a  in the dialog box but Excel ignores it and I'm left with just the first line after the process runs with subsequent address lines being lost.

How can I proceed to split up my address lines into separate fields

Thanks.....John (Dublin, Ireland)
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Can you search and replace that character ? if you can, replace it with something that doesn't appear anywhere else, like "*" or "$" or something similar.
 
Upvote 0
Can you look at the ASCII code of that character ? VBA can replace it easilty.

Cells.Replace What:=Chr(14), Replacement:="$"


Replace the 14 with the actual number. (It may be a 10 or a 13)
 
Upvote 0
What you can do is copy the character that you want to replace and then in the replace dialog Paste (Ctrl + C) it and it will show up then you can replace with what you want. I tried it and when I copied the square character and pasted it in the replace dialog it showed up as a circle with a squiggly line on top, but it worked fine while replacing.

HTH

DRJ
 
Upvote 0
On 2002-02-27 08:39, osullj wrote:
How do I look at the ASCII code?

In the character map, look at the number that appears at the bottom left. "Alt xxxx"

Or paste the strange symbol to Excel, and use this formula

=CODE(A1)

where A1 has the symbol.
 
Upvote 0
Thanks DRJ. I know it sound crazy but when I do that the paste in to replace dialog box come up blamk.

I used =CODE to determine that the ASCII number is 10. Juan Pablo you gave me the vba script above. I have never used VBA so how do I use it to do this.

Thanks John
 
Upvote 0
Hit Alt F11
Hit Control G

There you should see a blank window titled "Inmediate".

Paste this there:

Cells.Replace What:=Chr(10), Replacement:="$"

and hit Enter (While the cursor is in that line).
 
Upvote 0
Hi

To use VBA hit ALT+F11 to open the VB editor then go to insert then module.

In the module type this

Sub MyCode()


End Sub


Put your code in between those two lines and then press the play button to run the macro.

HTH

DRJ
 
Upvote 0

Forum statistics

Threads
1,214,385
Messages
6,119,210
Members
448,874
Latest member
b1step2far

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top