lichfields
New Member
- Joined
- May 11, 2004
- Messages
- 16
I'm trying to copy data from column A in a filtered list to the next column B. As column B is of course also filtered, I want to copy the visible cells (no problem) but then paste them to the visible cells (problem).
I've checked through earlier questions on this subject to find an answer but it seems there isn't one - at least not a straightforward one.
I did find a possible solution in the form of a "Code" as follows:
Worksheets("Sheet Name").Activate
Range("A2").Select
Selection.Copy
Range("A3:N1000").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Is this a macro thing? If so, how do you use it? I'm afraid I'm a macro virgin
Can anyone help?
I've checked through earlier questions on this subject to find an answer but it seems there isn't one - at least not a straightforward one.
I did find a possible solution in the form of a "Code" as follows:
Worksheets("Sheet Name").Activate
Range("A2").Select
Selection.Copy
Range("A3:N1000").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Is this a macro thing? If so, how do you use it? I'm afraid I'm a macro virgin
Can anyone help?