horizonflame
Board Regular
- Joined
- Sep 27, 2018
- Messages
- 186
- Office Version
- 2013
Hi,
I am performing a filter and copy/paste to next available row in another sheet, can anyone spot my error in my last part of my code please?
Thanks
I am performing a filter and copy/paste to next available row in another sheet, can anyone spot my error in my last part of my code please?
Thanks
Sheet3.Select
Dim sInput As String
sInput = Sheet1.Range("C2").Value
Sheet3.Range("A:A").AutoFilter Field:=1, Criteria1:="=*" & sInput & "*"
Range("A:A").Select
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheet2.Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False