I'm completing a tracker. user will complete questions one one sheet - each answer will be in a cells (B2-B8) and copied to a row in another sheet. I want to paste to the next available line.
I have tried code that copies the range (B2-B8) and then paste transpose=True. This was an error. The next I tried coping each cell and pasting each cell. But not sure how to add in the paste to next row. I can't remember the coding to use to create a loop with set range or the code to add to next available row.
Range("B2").Select
Selection.Copy
Sheets("Sheet2").Select
Range("A5").Select
ActiveSheet.Paste
Sheets("Settlement Request").Select
Range("B3").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet2").Select
Range("B5").Select
ActiveSheet.Paste
Sheets("Settlement Request").Select
Range("B4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet2").Select
Range("C5").Select
ActiveSheet.Paste
I have not gotten that far. When I tried the transpose = true I got a compile error.