• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Copy/Paste(transpose/values) into a new sheet in a new row

jennybean

New Member
Hello


I am trying to do the following in my excel work book.


I would like to copy cells "E5,E7,E9,E11,E13,E15,E17,E19,E21" from sheet "Form" to a table in sheet "Data Collection". I have built a Macros that copies the cells and transposes and pastes the values into A2 on sheet "Data Collection" but I am unsure how to start a new row.


If I wasnt clear enough in the instructions, please let me know and I will add more detail.


Thank you
 
Perhaps something like:

[pre]
Code:
Dim DestCell as Range
Set DestCell = Worksheets("Data Collection").Range("A2").End(xlsDown).Offset(1,0)
[/pre]
and then paste into DestCell using whatever method works best for you.
 
Back
Top