I created a macro button to specifically paste a table.
Now, I need to error check, verifying that the active contents on the clipboard is in fact a Table, Prior to pasting.
Something like” If Active Clipboard = Table, then Paste //// Else Msgbx ‘The contents of your clipboard is not a table. You can not perform this action at this time.’ vbOK
*****
History: The tables that we are inserting have a column with ID numbers. When the tables were pasted into a new document, MSWord threw off the formatting by turning on the auto numbering for that column (they thought they knew what we wanted, WRONG). To prevent this, I paste the table, Select the entire table and remove auto numbering by inserting the code line “Selection.Range.ListFormat.RemoveNumbers NumberType:=wdNumberParagraph”.
*****
I suspect that it has something to do with recognizing (verifying) the active clipboard’s contents type – I base this on the fact that if I DO have a table on my active clipboard and click EDIT, the Paste has changed to Paste Cell.