View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
DL[_3_] DL[_3_] is offline
external usenet poster
 
Posts: 13
Default 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