How do I pull a row of data from one sheet and transpose it as column into another sheet?
For example, I can pull from one range and transpose it to another range in the same sheet:
Code:
[FONT=Calibri][SIZE=3][COLOR=#000000]Range(Cells(1, 1), Cells(5, 1)) =WorksheetFunction.Transpose(Range(Cells(1, 5), Cells(1, 10)))[/COLOR][/SIZE][/FONT]
Code:
[FONT=Calibri][SIZE=3][COLOR=#000000]Sheets("Source").Range(Cells(1, 1), Cells(5,1)) = WorksheetFunction.Transpose(Sheets("Source").Range(Cells(1, 5),Cells(1, 10)))[/COLOR][/SIZE][/FONT]
Code:
[FONT=Calibri][SIZE=3][COLOR=#000000]Sheets("Destination").Range(Cells(1, 1), Cells(5,1)) =WorksheetFunction.Transpose(Sheets("Source").Range(Cells(1, 5),Cells(1, 10)))[/COLOR][/SIZE][/FONT]
What do I need to do differently?
Last edited: