@JaneFan,
Thank you for your reply.
your rule didn't do as i would have hoped but it did inspire me to write this and this does work!
SyntaxEditor Code Snippet
Sub Main CreateRevTable()
Dim oDrawDoc As DrawingDocument = ThisApplication.ActiveDocument
Dim oRTBs As RevisionTables = oDrawDoc.ActiveSheet.RevisionTables
' Create the revision table location points
Dim oLocation As Point2d
oLocation = ThisApplication.TransientGeometry.CreatePoint2d(55.77, 54.61)
'add a new table
Dim oRTB As RevisionTable
oRTB = oRTBs.Add2(oLocation, True, True, True, "A")
'Rotate Revision Table
oRTBs.Item(1).Rotation = 90 * Math.PI / 180
iLogicVb.UpdateWhenDone = True
End Sub