![]() |
|
#1
|
|||
|
|||
|
When I copy a table in Word and then paste it, what is the best option you are aware of to select that pasted table?
|
|
#2
|
||||
|
||||
|
The simplest option is to click in the table then click the handle that appears outside the top left corner of the table.
Or you could paste and select using a macro e.g. Code:
Sub PasteAndSelectTable()
Selection.Paste
If Selection.Tables.Count > 0 Then
Selection.Tables(1).Select
End If
End Sub
You could even replace the built-in Paste command by renaming the Macro EditPaste Code:
Sub EditPaste()
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
#3
|
|||
|
|||
|
Quote:
) I've been able to select the table, copy the table, paste the table and clear content control values. The final (I hope) problem is that the clearing clears all tables, not only the new copy.
|
|
| Tags |
| pasting, selection |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
How to fix pasted text
|
michellesmith | Word | 3 | 08-03-2017 08:29 PM |
how do I make pasted text the same size as the text it's being pasted into?
|
David Lee | Word | 6 | 08-16-2015 10:46 AM |
How To Squash Up a Pasted In Table?
|
abrogard | Word | 6 | 06-07-2014 02:32 AM |
Pasted text comes in columns
|
yotas312 | Word | 2 | 11-12-2011 07:58 AM |
Picture -it pasted into Word
|
eeyore | Word | 1 | 01-30-2011 11:39 PM |