how to write code for the following requirement

Arshicw

New Member
Joined
Jul 28, 2016
Messages
12
say cell A2 having value of B5 ( this B5 is a cell address)

cell A6 having value of C10 ( this c10 is a cell address)

Private Sub CommandButton1_Click()
ActiveSheet.Range("A2:A6").Copy
End Sub


Here in the code there will be A2 and A6 only as their cell value represents my desired value

Now i want to write a code so that the above should copy the range from B5 : C10 .

Thank you in advance
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try this:
Code:
Sub Copy_Me()
Dim ans As String
Dim anss As String
ans = Range("A2").Value
anss = Range("A6").Value
ActiveSheet.Range(ans & ":" & anss).Copy
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,060
Messages
6,128,545
Members
449,457
Latest member
ncguzzo

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