poppingpowpoof
Technical User
I am sure this is a simple problem but need some direction. I have a To Do Word document and when I complete a task I want to move the entire line to the bottom of the document by starting a macro. I can move the text but how do I get the cursor back to where I started?
Here is what I have so far--and thanks for your patience with this newbie!
Sub moveline()
'
' moveline Macro
'
'
Selection.MoveDown Unit:=wdLine, Count:=1, Extend:=wdExtend
Selection.Cut
Selection.EndKey Unit:=wdStory
Selection.PasteAndFormat (wdPasteDefault)
End Sub
Here is what I have so far--and thanks for your patience with this newbie!
Sub moveline()
'
' moveline Macro
'
'
Selection.MoveDown Unit:=wdLine, Count:=1, Extend:=wdExtend
Selection.Cut
Selection.EndKey Unit:=wdStory
Selection.PasteAndFormat (wdPasteDefault)
End Sub