Hi @Cris-Ideas
Try this rule out and see how you go. Not tested now but it should pull the first views model document part number iproperty into the hole table title for you.
Dim drawDoc As DrawingDocument = ThisApplication.ActiveDocument
'Set a reference to the active sheet.
Dim activeSheet As Sheet = drawDoc.ActiveSheet
Dim drawView As DrawingView = activeSheet.DrawingViews(1)
Dim modeldoc As Document = drawView.ReferencedDocumentDescriptor.ReferencedDocument
'Get the PropertySets object.
Dim propSets As PropertySets = modeldoc.PropertySets
'Get the design tracking property set.
Dim propSet As PropertySet = propSets.Item("Design Tracking Properties")
'Get the part number iProperty.
Dim partNum As [Property] = oPropSet.Item("Part Number")
activeSheet.HoleTables(1).Title = partNum.Value
If this solved a problem, please click (accept) as solution.
Or if this helped you, please, click (like)
Regards
Alan