VBAWannabee2
New Member
- Joined
- Feb 23, 2022
- Messages
- 28
- Office Version
- 2010
- Platform
- Windows
Good day!
Hi, need a little help on this one, how can I copy and paste visible cells to another column?
The data attached was subtotaled. I want to copy the values of Column E (visible only) then paste it on Column F respectively.
I'm still learning VBA and I can't execute this one. Missing the last line of my mini-code.
Any help will do, thanks and cheers!
Hi, need a little help on this one, how can I copy and paste visible cells to another column?
The data attached was subtotaled. I want to copy the values of Column E (visible only) then paste it on Column F respectively.
I'm still learning VBA and I can't execute this one. Missing the last line of my mini-code.
VBA Code:
Sub TestCopy()
Range("E1", Range("E1").End(xlDown)).Select
selection.SpecialCells(xlCellTypeVisible).Copy
End Sub
Any help will do, thanks and cheers!