Sheet "Symbol Editor" is the only sheet in the workbook.**
Sub AssembleSymbol()
Worksheets("Symbol Editor").Shapes.SelectAll
Selection.Group
End Sub
Before the subroutine AssembleSymbol() is run, there are 3 shapes inserted into the Symbol Editor, then the subroutine is run and I get:
"Excel Runtime Error 438 Object does not support property or method"
Even though I get an error, when you look at the worksheet all shapes are selected and grouped.
The rationale for grouping the Shapes is to save the shapes as 1 collective symbol along with their "relative" positions, to one another, in a "SymbolLibrary" to be used in future, user-defined, "displays"
Any help would be appreciated.