The loop is not needed as you will only see last value in the cell.
Please check the following solution. It should get you what you need.
Let me know if you have questions.
Cells(5, 1) = "Property"
Cells(5, 2) = "Report Name"
Cells(5, 3) = "To"
Cells(5, 4) = "From"
Cells(5, 5) = "Date Printed"
Cells(5, 6) = "File Name"
Main Topics
Browse All Topics





by: matthewspatrickPosted on 2009-11-05 at 10:43:27ID: 25752509
Perhaps you meant just...
Cells(5, 1) = "Property"
Cells(5, 2) = "Report Name"
Cells(5, 3) = "To"
Cells(5, 4) = "From"
Cells(5, 5) = "Date Printed"
Cells(5, 6) = "File Name"
If not, then please clarify what you're trying to do.