copy range via VBA

white_flag

Active Member
Joined
Mar 17, 2010
Messages
331
I have the following code:


Code:
Option Explicit
Public Sub test()

Dim my_range As Range
Dim c, mc As Variant

Set mc = ActiveSheet.Cells(3, 4)
Set my_range = ActiveSheet.Range("B8:C20")

For Each c In my_range
        Worksheets("Feuil2").Cells(c.Row, c.Column).Value = "=" & Worksheets("Feuil1").Cells(c.Row, c.Column).Value & "*" & Worksheets("Feuil1").mc.Address()

Next c

End Sub

and the error is: Object does not support this method ...

for me, this code has to do this: Copy an value from an range add an address cell and make an new range.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Forum statistics

Threads
1,214,827
Messages
6,121,818
Members
449,049
Latest member
cybersurfer5000

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