Hiding a Shape with VBA

RLJ

Active Member
Joined
Mar 15, 2011
Messages
417
Office Version
  1. 365
Platform
  1. Windows
I need to hide Rectangle 19 based upon the code below, but it gives an error when it gets to the line for Shapes.

Code:
Private Sub ComboBox1_Change()
    Dim AM As String
    
    AM = Range("Amenity_Type").Value
    Application.ScreenUpdating = False
        Range(AM).Copy
        Range("Amenities_Variable").PasteSpecial Paste:=xlPasteValues
        Range("C26").Select
        
            'If Prop Type = Office then Rectangle 19 needs to be visable, else hidden
            If Range("Prop_Type_Change").Value = "Office" Then
                    CheckBox11.Visible = True
                    ActiveSheet.Shapes("Rectangle 19").Visable
                Else
                    CheckBox11.Visible = False
            End If
    Application.ScreenUpdating = True
    Application.CutCopyMode = False
End Sub

Thanks for your help
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
ActiveSheet.Shapes("Rectangle 19").Visible = False
 
Upvote 0

Forum statistics

Threads
1,221,638
Messages
6,160,994
Members
451,682
Latest member
ogoreo

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