How to DELETE A WHOLE LINE?

  • Thread starter Thread starter Guest
  • Start date Start date
Record a macro using the following keystrokes:

Press the End key to get to the end of the line while holding the Shift key
will ensure that the entire line is selected.

While still holding down the shift key press the down arrow the recommended
number of lines.
Press the delete key once you have the necessary lines selected. (It may be
necessary to click the END key again if the first line does not extend to
the same length as the last line in your selection.

--
Dawn Crosier
Microsoft MVP
"Education Lasts a Lifetime"

This message was posted to a newsgroup, Please post replies and questions
to the group so that others can learn as well.
I would like to record a macro to delete five or six lines at a time.
 
For i = 1 To 5
ActiveDocument.Bookmarks("\Line").Range.Select
Selection.Delete
Next i



--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top