M Maisieb Nov 24, 2009 #1 In Word 2007, is there a keyboard shortcut that would allow me to delete all words till the end of a line? Till the end of a sentence?
In Word 2007, is there a keyboard shortcut that would allow me to delete all words till the end of a line? Till the end of a sentence?
J Jay Freedman Nov 24, 2009 #2 In Word 2007, is there a keyboard shortcut that would allow me to delete all words till the end of a line? Till the end of a sentence? Click to expand... There is no single command that does either of those things, so there isn't any shortcut. However, you can install these two macros (http://www.gmayor.com/installing_macro.htm) and then assign a shortcut to each macro (http://word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToHotkey.htm). Sub DelToEndofLine() Selection.EndKey Unit:=wdLine, Extend:=True Selection.Delete End Sub Sub DelToEndofSentence() Selection.End = Selection.Sentences(1).End Selection.Delete End Sub
In Word 2007, is there a keyboard shortcut that would allow me to delete all words till the end of a line? Till the end of a sentence? Click to expand... There is no single command that does either of those things, so there isn't any shortcut. However, you can install these two macros (http://www.gmayor.com/installing_macro.htm) and then assign a shortcut to each macro (http://word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToHotkey.htm). Sub DelToEndofLine() Selection.EndKey Unit:=wdLine, Extend:=True Selection.Delete End Sub Sub DelToEndofSentence() Selection.End = Selection.Sentences(1).End Selection.Delete End Sub