what is wrong with the following statement:
I get a _global error. I want to select all the used cells in column A starting with A2.![]()
Range("A2", Rows.Count).End(xlUp).Copy
thanks,
what is wrong with the following statement:
I get a _global error. I want to select all the used cells in column A starting with A2.![]()
Range("A2", Rows.Count).End(xlUp).Copy
thanks,
try![]()
Range("A2", Rows.Count).End(xlUp).Select Selection.Copy
You're missing part:
![]()
Range("A2", Cells(Rows.Count, "A").End(xlUp)).Copy
Everyone who confuses correlation and causation ends up dead.
Another way of writing the same thing:
![]()
Range("A2:A" & Rows.Count).End(xlUp).Copy
thanks guys
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks