add right aligned tab with dot leader to word doc from excel
This works in word 2002
Sub Add_Tab()
Selection.ParagraphFormat.TabStops.Add _
Position:=InchesToPoints(5.33), _
Alignment:=wdAlignTabRight, Leader:=wdTabLeaderDots
End Sub
I want to amend it to one line of code in a biggger macro in Excel 2002
Thanks,
Tegger
|