Participate now!
Don’t have an account yet? Register yourself now and be a part of our community!
Re: Format Sheet Objects
Hi Robert
Thanks for your reply. That worked fine for one shape but needed it for all shapes.
Found out what I was doing wrong. Changing the properties like the fill colour worked fine, but if you want to change the alignment for example you have to select the shape first.
Dim shp
For Each shp In ActiveSheet.Shapes
shp.Fill.ForeColor.SchemeColor = 1
shp.Select
With Selection
.HorizontalAlignment = xlCenter
End With
Next
Cheers
Kev.
Don’t have an account yet? Register yourself now and be a part of our community!