VBA Function to Resize a rectangle based on dimension values in cells

Atef81

New Member
Joined
Feb 14, 2023
Messages
1
Office Version
  1. 365
  2. 2016
  3. 2010
Platform
  1. Windows
Hi,
I want to write a VBA code to draw a rectangle based on dimensions written in 2 cells (width and height).
Then if I changed the values in the cells, the rectangle resizes to the new dimensions.

The code I was able to reach so far draws the triangle, but it keeps adding new triangles on top of each other even without me changingany values.
Then when i change the values, I find another rectangle is drawn on top of the old one(s).

Can someone help me adjusting the code, please?
Thanks in advance.
Here is my code:

VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)

Set myDocument = Worksheets(1)

With myDocument.Shapes.AddShape(msoShapeRectangle, 199, 144, Range("B1"), Range("B2"))
    .Name = "Red Square"
    .Fill.ForeColor.RGB = RGB(255, 0, 0)
    .Line.DashStyle = msoLineDashDot
    End With
End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).

Forum statistics

Threads
1,215,227
Messages
6,123,745
Members
449,116
Latest member
alexlomt

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