The following should work
Code:
Sub Macro1()
Dim oTable As Table
Dim i As Integer
Dim oCell As Cell
Dim oRng As Range
Set oTable = Selection.Tables(1)
With oTable
For i = 2 To .Rows.Count
For Each oCell In .Rows(i).Cells
Set oRng = oCell.Range
oRng.Collapse 1
oRng.MoveEndWhile Chr(32)
oRng.Text = ""
oCell.Range.ParagraphFormat.TabStops.Add _
Position:=InchesToPoints(1.41), _
Alignment:=wdAlignTabDecimal, _
Leader:=wdTabLeaderSpaces
Next oCell
Next i
End With
Set oTable = Nothing
Set oCell = Nothing
Set oRng = Nothing
End Sub