VBA to change all shapes that start with "SHP_"

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,
I want a macro to change all shape colours to RGB 150,150,085 if there name starts with "SHP_"
please help if you can.
Thanks
Tony
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Not sure what you want to change the color of but pick one of the lines in this:
VBA Code:
Sub ChangeShapeColor()

    Dim oShp As Shape
    
    For Each oShp In ActiveSheet.Shapes
        With oShp
            If Left(.Name, 4) = "SHP_" Then
                .Fill.ForeColor.RGB = RGB(150, 150, 85)
                '.Line.BackColor.RGB = RGB(150, 150, 85)
                '.TextFrame.Characters.Font.Color = RGB(150, 150, 85)
            End If
        End With
    
    Next oShp
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,372
Messages
6,124,535
Members
449,169
Latest member
mm424

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top