Hello,
Here is my code to filter Column E, and copy the Data in Column I.
At the moment, I'm copying the header aswell. Can you tell me how I can copy the data in Column I without the heading?
Code:
Sub Financials_Pop_Emails()
With Sheets("mySS Investor Details").Range("A1")
.AutoFilter _
Field:=5, _
Criteria1:=Array("Financials", "Ptnr Cap Stmt"), _
Operator:=xlFilterValues
End With
Sheets("mySS Investor Details").Columns("I").SpecialCells(xlCellTypeVisible).Copy
End Sub
Any help appreciated - thanks
Here is my code to filter Column E, and copy the Data in Column I.
At the moment, I'm copying the header aswell. Can you tell me how I can copy the data in Column I without the heading?
Code:
Sub Financials_Pop_Emails()
With Sheets("mySS Investor Details").Range("A1")
.AutoFilter _
Field:=5, _
Criteria1:=Array("Financials", "Ptnr Cap Stmt"), _
Operator:=xlFilterValues
End With
Sheets("mySS Investor Details").Columns("I").SpecialCells(xlCellTypeVisible).Copy
End Sub
Any help appreciated - thanks