T
t.a.smith
I have simple macro I recorded for a table where I want to have it remove the
first name only in the cell, leaving the last name in the same cell. It goes
like this -
Sub delfn()
'
' delfn Macro
' Macro recorded 10/13/2009 by Teresa Smith
'
Selection.MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend
Selection.TypeBackspace
Selection.MoveDown Unit:=wdLine, Count:=1
End Sub
However, How do I get it to repeat itself all the way down the first column
of a table? I thought there is a way to chain it to keep running or
repeating? Can you help?
first name only in the cell, leaving the last name in the same cell. It goes
like this -
Sub delfn()
'
' delfn Macro
' Macro recorded 10/13/2009 by Teresa Smith
'
Selection.MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend
Selection.TypeBackspace
Selection.MoveDown Unit:=wdLine, Count:=1
End Sub
However, How do I get it to repeat itself all the way down the first column
of a table? I thought there is a way to chain it to keep running or
repeating? Can you help?