scale based on a cell!!

miyat

Board Regular
Joined
Nov 27, 2009
Messages
166
hi, i have a square drawn on four different lines to form a square... i want that that square will be interactive. the width and the height of the cell will scale base on the value i put in cell A1 and A2.. is it possible?
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
For a square using cells c5:d6

Private Sub Worksheet_Change(ByVal Target As Range)
Dim side1 As Long
Dim side2 As Long

If Target.Column = 1 And Target.Row < 3 Then
side1 = Range("a1").Value / 2
side2 = Range("a2").Value / 2
Columns("C:d").ColumnWidth = side1
Rows("5:6").RowHeight = side2
End If
End Sub
 
Upvote 0
hi steve, tnx for the reply... i am a beginner in vba programing... i cant actually understand that.. can u tell me that in details?tnx..
 
Upvote 0
Right-click on the sheet tab, then select the view code option.

Change the dropdown options to worksheet and change.

Paste the code between the sub/end sub lines
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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