Copying a RAnge of column with a variant number of rows

holy_eti

New Member
Joined
Jun 5, 2018
Messages
38
Hello, in my code, I am trying to copy a certain number of columns which is constant. With this, i am trying to copy a cartain number of rows that is variant. My code doesn't seems to work because I have an error 1004: method of Range as failed. I hope that someon e could help me, thank you.

Code:
k = 0
For i = 3 To moc_nombre_rap + 2
    If Cells(i, "I").Value = "Notifié" Then
        k = k + 1
    End If
    For j = 6 To k + 5
        If Cells(i, "I").Value = "Notifié" Then
            Sheets("Données brutes").Range("B" & i, "J" & i).Select   ' The error occurs here
            Selection.Copy Destination:=Sheets("Rapport").Range("B" & j)
        End If
        Exit For
    Next j
Next i

Thank you
 
Last edited:

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
You need the sheet to be the activesheet in order to select a range on that sheet. Instead of .Select just use .Copy
 
Upvote 0

Forum statistics

Threads
1,216,112
Messages
6,128,901
Members
449,477
Latest member
panjongshing

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