word 2002: text replacement VBA not replacing 100%

dgr7

Board Regular
Joined
Apr 5, 2006
Messages
225
hello,
I have this VBA code that I want to run on a .csv comma-delimited file that I save from Excel. The VBA should replace every , occurance with a Line-Feed character. When I run it, it replaces every , correctly *except* for the last , occurance in the document, which it seems to replace with "".

Can anyone tell me why all , 's aren't being replaced and how to change this code to make it work on every , occurance in the .csv file instead of all but the last one?

thanks in advance,
david

before VBA code
---------
163206,107043317
165962,107093148
170621,106693773
-------

after VBA code after I've saved the document as a .txt then reopened the .txt
-------
163206
107043317
165962
107093148
170621106693773
--------

Code:
Application.DisplayAlerts = False
    
    Selection.WholeStory
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = ","
        .Replacement.Text = "Chr(10)"
        .Forward = True
        .Wrap = wdFindAsk
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
    
    Application.DisplayAlerts = True
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hi dgr7,

Presumably you don't really want to replace the commas with the string "Chr(10)", but with a line feed or a carriage return. In that case, you could use
Code:
.Replacement.Text = "^l"
or
Code:
.Replacement.Text = "^p"
Other than that, the code works fine for me with the data you posted. You could make it more efficient, by avoiding unnecessary selections, with a construct like:
Code:
Sub Test()
Application.DisplayAlerts = False
With ActiveDocument.Range
    .WholeStory
    With .Find
        .ClearFormatting
        .Replacement.ClearFormatting
        .Text = ","
        .Replacement.Text = "^l"
        .Forward = True
        .Wrap = wdFindAsk
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
        .Execute Replace:=wdReplaceAll
    End With
End With
Application.DisplayAlerts = True
End Sub

Cheers
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,447
Latest member
M V Arun

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