M
Mike
I've written a very helpful macro that will find a certain table in a
document, erase it, and create an updated table, complete with all the
necessary items the table should contain.
I only have one very small issue. In each document, the position of
the table may be in a slightly different position to the left or right.
What I would like to create is two other macros so that each time I
run it, it will move the position of the table 1/100th of an inch - one
to go left and one to go right.
What I was picturing is a line that would read something like...
If Selection.Tables(1).Rows.LeftIndent = InchesToPoints(0.15) Then
Selection.Tables(1).Rows.LeftIndent = InchesToPoints(0.14)
End If
.... and so on. I planned on repeating the lines a bunch of times to
incorporate different distances.
Of course, that command does absolutely nothing when I try it. Does
anyone have any ideas what would work? Could I be missing something
very simple here or am I just approaching this with the wrong idea?
Thanks in advance,
- Mike
document, erase it, and create an updated table, complete with all the
necessary items the table should contain.
I only have one very small issue. In each document, the position of
the table may be in a slightly different position to the left or right.
What I would like to create is two other macros so that each time I
run it, it will move the position of the table 1/100th of an inch - one
to go left and one to go right.
What I was picturing is a line that would read something like...
If Selection.Tables(1).Rows.LeftIndent = InchesToPoints(0.15) Then
Selection.Tables(1).Rows.LeftIndent = InchesToPoints(0.14)
End If
.... and so on. I planned on repeating the lines a bunch of times to
incorporate different distances.
Of course, that command does absolutely nothing when I try it. Does
anyone have any ideas what would work? Could I be missing something
very simple here or am I just approaching this with the wrong idea?
Thanks in advance,
- Mike