Again based on your example, you could process all the cells in column 1 e.g. as follows (this works with your table without upsetting row 2).
Code:
Sub Macro2()
Dim ocell As Cell
Dim oInlineShape As InlineShape
Dim oShape As Shape
Dim i As Integer
For i = 1 To ActiveDocument.Tables(1).Rows.Count
Set ocell = ActiveDocument.Tables(1).Cell(i, 1)
Set oInlineShape = ocell.Range.InlineShapes(1)
Set oShape = oInlineShape.ConvertToShape
oShape.Rotation = 360
oShape.ConvertToInlineShape
Next i
Set oInlineShape = Nothing
Set oShape = Nothing
Set ocell = Nothing
End Sub
or if you only want to process some of the rows then
Code:
Sub Macro3()
Dim ocell As Cell
Dim oInlineShape As InlineShape
Dim oShape As Shape
Dim i As Integer
For i = 1 To ActiveDocument.Tables(1).Rows.Count
Select Case i
Case 1, 2, 3, 13, 15, 22, 57
Set ocell = ActiveDocument.Tables(1).Cell(i, 1)
Set oInlineShape = ocell.Range.InlineShapes(1)
Set oShape = oInlineShape.ConvertToShape
oShape.Rotation = 360
oShape.ConvertToInlineShape
Case Else
End Select
Next i
Set oInlineShape = Nothing
Set oShape = Nothing
Set ocell = Nothing
End Sub