Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to delete a drawing symbol named "XXX" from all the sheets in the drawing but the symbol is getting deleted from the active sheet only.
Used the following VBA code:
Dim oSymbol As SketchedSymbol
For Each oSymbol In oDoc.ActiveSheet.SketchedSymbols
If oSymbol.Name = "XXX" Then
oSymbol.Delete
Please help me with a VBA code to do the operation in all the sheets in the drawing.
Regards,
Mohammed Shuaib K
Solved! Go to Solution.