Oct 23, 2001 #1 hussux Programmer Joined Jan 11, 2001 Messages 19 Location GB Anyone help? This is probably an easy one... Question: How do you align a cells text in word using VBA? i've tried :- objtable.rows(1).alignment = wdAlignRowRight doesn't seem to work. Any ideas??? thanks in advance...
Anyone help? This is probably an easy one... Question: How do you align a cells text in word using VBA? i've tried :- objtable.rows(1).alignment = wdAlignRowRight doesn't seem to work. Any ideas??? thanks in advance...
Oct 24, 2001 1 #2 Mossoft Programmer Joined Sep 12, 2001 Messages 127 Location EU try: objtable.rows(1).range.paragraphformat.Alignment = wdAlignParagraphLeft M Upvote 0 Downvote
Oct 25, 2001 Thread starter #3 hussux Programmer Joined Jan 11, 2001 Messages 19 Location GB thanks Mossoft! Upvote 0 Downvote