blueroo123
New Member
- Joined
- Apr 25, 2015
- Messages
- 6
Hi Everyone:
I have been sorting through a problem, but cannot exactly figure out how to do it..
We need to be able to start a specific cell "F283" and move down through column F until there is a blank cell, and copy that column for use somewhere else. I have seen a couple offerings that are similiar to:
But, we need to start at a specific cell, rather than D1. Can someone please help me solve this one?
Thanks in advance!
I have been sorting through a problem, but cannot exactly figure out how to do it..
We need to be able to start a specific cell "F283" and move down through column F until there is a blank cell, and copy that column for use somewhere else. I have seen a couple offerings that are similiar to:
Code:
nrows = Worksheets("Master").Cells(Rows.Count, 4).End(xlUp).Row
Worksheets("Copy").Rows("2").Copy Worksheets("Copy").Range("A3").Resize(nrows)
But, we need to start at a specific cell, rather than D1. Can someone please help me solve this one?
Thanks in advance!