Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,665
- Office Version
- 365
- 2016
- Platform
- Windows
There is likely an obvious error I can't see ...
I am simply trying to copy the cell contents, A2:A4, from worksheet ws_dump to cell AA2 in ws_dump.
Why are the 3 cells being copied to AA1:AA3?
Code:
With ws_dump
.Range("A2:A" & f_rowcnt).Copy Destination:=.Range("AA2")
End With
I am simply trying to copy the cell contents, A2:A4, from worksheet ws_dump to cell AA2 in ws_dump.
Why are the 3 cells being copied to AA1:AA3?