Oct 23, 2001 #1 hussux Programmer Jan 11, 2001 19 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 Sep 12, 2001 127 EU try: objtable.rows(1).range.paragraphformat.Alignment = wdAlignParagraphLeft M Upvote 0 Downvote
Oct 25, 2001 Thread starter #3 hussux Programmer Jan 11, 2001 19 GB thanks Mossoft! Upvote 0 Downvote