djl0525
Well-known Member
- Joined
- Dec 11, 2004
- Messages
- 1,238
I'm trying to create a macro to change the fill color of the selected object to black. I recorded a macro and got the code below. It works unless I select an object with a group which is what I need it for.
Can this code be modified to change the fill color the selected object in a group?
-- DJ
Can this code be modified to change the fill color the selected object in a group?
Sub Fill_Black()
'
' Fill_Blank Macro
Selection.ShapeRange.Fill.ForeColor.SchemeColor = 8
End Sub
-- DJ