D3allamerican07
Board Regular
- Joined
- Jul 22, 2015
- Messages
- 101
I have 2 sheets, both have auto filters applied. I need to copy the visible cells from sheet1 and paste them to only the visible cells in sheet2. Nothing I have found online allows me to do this.
This is the closest I've seen to working.
Any help is appreciated!
This is the closest I've seen to working.
Code:
Sheets("Sheet1").Range("A1:B10000").SpecialCells(xlCellTypeVisible).Copy
Sheets("Sheet2").Range("J2").PasteSpecial Paste:=xlPasteValues, Operation:=xlPasteSpecialOperationMultiply
Any help is appreciated!