HELP!
I have to make a circle with a variable number of wordart shapes around it (depending on the user). I need to be able to adjust the spacing and angle of the wordart shapes as well as do a count on the shapes using VBA.
I can change the size and rotation, but only using a static number. I can't figure out how to count the number of shapes.
b = 11.25
For a = 3 To 34
ActiveSheet.Shapes(a).Select
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.Rotation = b
b = b + 11.25
Next
Also, is there an easy way to adjust spacing?
Does what I'm asking make any sense?
I have to make a circle with a variable number of wordart shapes around it (depending on the user). I need to be able to adjust the spacing and angle of the wordart shapes as well as do a count on the shapes using VBA.
I can change the size and rotation, but only using a static number. I can't figure out how to count the number of shapes.
b = 11.25
For a = 3 To 34
ActiveSheet.Shapes(a).Select
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.Rotation = b
b = b + 11.25
Next
Also, is there an easy way to adjust spacing?
Does what I'm asking make any sense?