View Single Post
 
Old 09-03-2018, 07:35 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

It's generally a good idea to specify ranges rather than selecting anything. You'll note that the macro I posted in https://www.msofficeforums.com/word-...row-table.html never selects the tables, for example. Instead it simply loops through all the tables via:
Code:
For Each Tbl In ActiveDocument.Tables
then assigns the range spanned by a given table via:
Code:
  With Tbl
    ...
    Set Rng = .Range
In any event, when running a macro, I wouldn't expect to see any arrow pointers - even with screen updating on.

Perhaps you could explain more about what you're trying to do.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote