Deleting a shape with its name set as a variable

niall91

New Member
Joined
Jul 21, 2020
Messages
45
Office Version
  1. 2019
Platform
  1. Windows
HI Guys
Could someone please help me with this problem.

This macro inserts a button and names it corresponding to the cell row the value is entered . My issue is when the value is deleted from that row i want the button to be deleted also.

When i change this macro to hide and unhide the button (that has been created already before the macro runs) rather than create a new button inside the macro it works perfect. The problem seems to be creating the button inside the macro.

Thanks


Private Sub Worksheet_Change(ByVal Target As Range)
d1 = "D-01"
d2 = "D-02"
Dim u As String
u = Cells(Target.Row, 2)

If Not Intersect(Target, Range("H47:H96")) Is Nothing Then
If UCase(Cells(Target.Row, 8)) = d1 Or _
UCase(Cells(Target.Row, 8)) = d2 _
Then _
'ActiveSheet.Shapes.Range(Array(u)).Visible = msoTrue
ActiveSheet.Shapes.AddShape(msoShapeRoundedRectangle, 390, _
662.4, 45, 14.4).Select
Selection.ShapeRange.ThreeD.BevelTopType = msoBevelNone
Selection.ShapeRange.Shadow.Visible = msoFalse
Selection.ShapeRange.Name = u

With Selection.ShapeRange.Fill
.Visible = msoTrue
.ForeColor.ObjectThemeColor = msoThemeColorAccent1
.ForeColor.TintAndShade = 0
.ForeColor.Brightness = -0.25
.Transparency = 0.2900000215
.Solid
End With

Selection.ShapeRange.TextFrame2.TextRange.Font.size = 10
Selection.ShapeRange(1).TextFrame2.TextRange.Characters.Text = "Modify"
With Selection.ShapeRange(1).TextFrame2.TextRange.Characters(1, 6).Font
.NameComplexScript = "+mn-cs"
.NameFarEast = "+mn-ea"
.Fill.Visible = msoTrue
.Fill.ForeColor.ObjectThemeColor = msoThemeColorLight1
.Fill.ForeColor.TintAndShade = 0
.Fill.ForeColor.Brightness = 0
.Fill.Transparency = 0
.Fill.Solid
.size = 10
.Name = "+mn-lt"
End With
Range("A1").Select

End If
End If

If Not Intersect(Target, Range("H47:H96")) Is Nothing Then
If UCase(Cells(Target.Row, 8)) = "" _
Then _
ActiveSheet.Shapes.Range(Array(u)).Select
Selection.Delete

End If
End If
Stop

End Sub
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Looks like your code is a bit too clever for itself (or maybe it's just me):

1) The Target value has to be d1 or d2 or it won't create the button.​
2) At the same time it only deletes the button if the same cell value is empty.​
 
Upvote 0
Looks like your code is a bit too clever for itself (or maybe it's just me):

1) The Target value has to be d1 or d2 or it won't create the button.​
2) At the same time it only deletes the button if the same cell value is empty.​

Yes this is true. i want the button to be deleted if the user deletes the target value. Any ideas?
 
Upvote 0
works for me
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim u As String, d1 As String, d2 As String

d1 = "D-01"
d2 = "D-02"
u = Cells(Target.Row, 2)

If Not Intersect(Target, Range("H47:H96")) Is Nothing Then
    If UCase(Target) = d1 Or UCase(Target) = d2 Then
        ActiveSheet.Shapes.AddShape(msoShapeRoundedRectangle, 390, 662.4, 45, 14.4).Select
        Selection.ShapeRange.ThreeD.BevelTopType = msoBevelNone
        Selection.ShapeRange.Shadow.Visible = msoFalse
        Selection.ShapeRange.Name = u
    
        With Selection.ShapeRange.Fill
            .Visible = msoTrue
            .ForeColor.ObjectThemeColor = msoThemeColorAccent1
            .ForeColor.TintAndShade = 0
            .ForeColor.Brightness = -0.25
            .Transparency = 0.2900000215
            .Solid
        End With

        Selection.ShapeRange.TextFrame2.TextRange.Font.Size = 10
        Selection.ShapeRange(1).TextFrame2.TextRange.Characters.Text = "Modify"
        
        With Selection.ShapeRange(1).TextFrame2.TextRange.Characters(1, 6).Font
            .NameComplexScript = "+mn-cs"
            .NameFarEast = "+mn-ea"
            .Fill.Visible = msoTrue
            .Fill.ForeColor.ObjectThemeColor = msoThemeColorLight1
            .Fill.ForeColor.TintAndShade = 0
            .Fill.ForeColor.Brightness = 0
            .Fill.Transparency = 0
            .Fill.Solid
            .Size = 10
            .Name = "+mn-lt"
        End With
        
        Range("A" & Target.Row).Select    'so can still see area of interest

    End If
End If

If Not Intersect(Target, Range("H47:H96")) Is Nothing Then
    If Target = "" Then
        On Error Resume Next    'in case no such shape
        ActiveSheet.Shapes.Range(Array(u)).Select
        Selection.Delete
        On Error GoTo 0         're-enable error notification
    End If
End If

'Stop

End Sub
 
Upvote 0
That works great thanks you (y)

Maybe you can help me with another question?

ActiveSheet.Shapes.AddShape(msoShapeRoundedRectangle, 390, 662.4, 45, 14.4).Select
These x,y points on the sheet. Is there code to move shapes to specific locations using these points.

Thanks again
 
Upvote 0
Ah-yes, I thought it strange where the shape was being placed.

In the VBA editing window, put your cursor within the word AddShape and hit the F1 key to bring up the built-in help for that instruction.
You'll see the first two numbers position the shape relative to the upper-left corner of the document and the other two set the shapes size.

So if you wanted to locate the shape at a particular cell location you could use variables as the left and top of that particular cell.
For example to position the shape on the right next to the target:
Rich (BB code):
If Not Intersect(Target, Range("H47:H96")) Is Nothing Then
    If UCase(Target) = d1 Or UCase(Target) = d2 Then
        
        With Target.Offset(, 1).Cells
            L = .Left
            T = .Top
        End With
        
        ActiveSheet.Shapes.AddShape(msoShapeRoundedRectangle, L, T, 45, 14.4).Select
Hope that helps.
 
Upvote 0
Thanks this is great. Im only learning VBA so simple things like this trip me up all the time. ?
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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