T
Tony Logan
I'm trying to move a line of text (which will always be just a few characters
in length) from between 2 tables to the line following the second table. So
my original data structure looks like this:
table 1
line of text
table 2
What I'm trying to achieve is this:
table 1
table 2
line of text
I'm using this code to test whether the text appears between tables:
If .Previous.Range.Information(wdWithInTable) And _
.Next.Range.Information(wdWithInTable) Then
But that's where I get stumped. Any of the Move commands seem to limit me to
Line, Paragraph, Window, and Screen. Is there another command I could use to
move the text?
in length) from between 2 tables to the line following the second table. So
my original data structure looks like this:
table 1
line of text
table 2
What I'm trying to achieve is this:
table 1
table 2
line of text
I'm using this code to test whether the text appears between tables:
If .Previous.Range.Information(wdWithInTable) And _
.Next.Range.Information(wdWithInTable) Then
But that's where I get stumped. Any of the Move commands seem to limit me to
Line, Paragraph, Window, and Screen. Is there another command I could use to
move the text?