help me run this macro in word. Thanks!

pedie

Well-known Member
Joined
Apr 28, 2010
Messages
3,875
Here is my current code

Sub removewithdots()<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
Dim LR As Long, i As Long, j As Integer, c As Range<o:p></o:p>
LR = Range("A" & Rows.Count).End(xlUp).Row<o:p></o:p>
For Each c In Range("A1:D" & LR)<o:p></o:p>
For j = 0 To 9<o:p></o:p>
c.Value = Replace(c.Value, j, ".")<o:p></o:p>
Next j<o:p></o:p>
Next c<o:p></o:p>
End Sub

This remove any numeric numbers in excel. how do i go about removing it in word 2007.

Thanks again!!
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I got it thanks:

Thanks..it is very easy but it was difficult initially:biggrin:
 
Upvote 0

Forum statistics

Threads
1,215,013
Messages
6,122,690
Members
449,092
Latest member
snoom82

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