Never mind! Just solved it myself!
Sub FormatShapes()
With ActiveSheet.Shapes.Range(Array("Japan", "Korea")).Fill
.Visible = msoTrue
.ForeColor.RGB = RGB(229, 229, 229)
.Transparency = 0
.Solid
End With
With ActiveSheet.Shapes.Range(Array("Japan", "Korea")).Line
.Visible = msoTrue
.ForeColor.RGB = RGB(181, 191, 199)
.Transparency = 0
End With
With ActiveSheet.Shapes.Range(Array("Japan", "Korea")).Line
.Visible = msoTrue
.ForeColor.RGB = RGB(181, 191, 199)
.Transparency = 0
End With
With ActiveSheet.Shapes.Range(Array("Japan", "Korea")).TextFrame2.TextRange.Font.Fill
.Visible = msoTrue
.ForeColor.RGB = RGB(181, 191, 199)
.Transparency = 0
.Solid
End With
End Sub
Thanks again!
Bookmarks