Thread
:
Sorting cells within multiple rows
View Single Post
#
2
Greg
Posts: n/a
Robin,
Try:
Sub ScratchMacro()
Dim oTbl As Table
For Each oTbl In ActiveDocument.Tables
oTbl.Columns(2).Sort ExcludeHeader:=True
Next
End Sub
Reply With Quote