![]() |
|
|
|
#1
|
||||
|
||||
|
Collapse, as its name suggests, collapses the range to either end - you can use wdCollapseStart or wdCollapseEnd.
Your previous post indicated the tables were being merged, which implied to me that one was being inserted into the other. What the code I posted does is to append the tables. If you want to insert the replicated content as a new table, you need to have an empty paragraph between them, which you could create with something like: Code:
Sub Demo() Dim Rng As Range With ActiveDocument Set Rng = .Tables(1).Range Rng.Collapse wdCollapseEnd Rng.FormattedText = .Tables(1).Range.FormattedText Rng.Tables(1).Split Rng.Rows(1) End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
| Tags |
| .net, table |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
editing a number/text at one place and changes taking place wherever it appears
|
anurag.butoliya | Word | 1 | 06-14-2014 06:27 PM |
How to tell Word (2010) my Capitalization is correct
|
JRW1015 | Word | 3 | 08-13-2013 04:57 PM |
Word 2007 Tables - Shift cells backwards one place
|
bloodge1 | Word Tables | 3 | 08-28-2012 10:11 PM |
| Outlook 2010 duplicate email folders | randolsgm1 | Outlook | 1 | 07-19-2011 05:48 PM |
Duplicate holidays in Outlook 2010
|
pln@dlf.org | Outlook | 1 | 06-06-2011 11:45 AM |