how do i move the "cursor" from the first word to the second word?
B Bill Coan Feb 22, 2005 #2 The following line of vba code will move the cursor to the next word, no matter what word it happens to be in right now: Selection.Words.Item(1).Next(wdUnits.wdWord, 1).Select
The following line of vba code will move the cursor to the next word, no matter what word it happens to be in right now: Selection.Words.Item(1).Next(wdUnits.wdWord, 1).Select