R
Robert
I'm a newbie at this so please bear with me.
I have a simple macro that deletes the 1st few characters
of a line based on the position of the second text object.
I just need it to repeat to the end of the file.
This is what I have
Sub StripPoints()
'
' StripPoints Macro
Selection.HomeKey Unit:=wdLine
Selection.MoveRight Unit:=wdWord, Count:=2, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
Selection.MoveDown Unit:=wdLine, Count:=1
End Sub
Suggestions?
Or perhaps a good web site for beginners?
TIA
Robert
I have a simple macro that deletes the 1st few characters
of a line based on the position of the second text object.
I just need it to repeat to the end of the file.
This is what I have
Sub StripPoints()
'
' StripPoints Macro
Selection.HomeKey Unit:=wdLine
Selection.MoveRight Unit:=wdWord, Count:=2, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
Selection.MoveDown Unit:=wdLine, Count:=1
End Sub
Suggestions?
Or perhaps a good web site for beginners?
TIA
Robert