Copying data from certain papers except the main

sofas

Active Member
Joined
Sep 11, 2022
Messages
469
Office Version
  1. 2019
Platform
  1. Windows
Hello, please correct the following code. I can't copy data from certain papers except the main one

VBA Code:
Sub copy()
Dim last As Long, lr As Long
Dim sh As Worksheet: Set sh = Sheet1
Dim WSname As String

With Sheet1
last = .Range("A" & Rows.Count).End(xlUp).Row
End With

Dim ArrayOne As Variant
ArrayOne = Array("Sheet3", "Sheet8")

lr = Range("a" & Rows.Count).End(xlUp).Row
        
        
    With Sheets(ArrayOne)
          
            .Range("A2:G" & lr).AdvancedFilter Action:=xlFilterCopy, CopyToRange:=sh.Range("A" & last + 2)
      
        sh.Range("i" & last + 2).Value = WSname
        
        End With
  


End Sub
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Your need is not clear. What papers? what is meant by "...certain papers except the main one"? Maybe give more detail about the issue and the result desired. Consider posting the offending data -- or at least realistic data -- using Mr Excel's XL2BB add-in that enables you to post part of a worksheet. For details see HERE.
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,235
Members
449,092
Latest member
SCleaveland

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