Hello,
The best solution may depend on the amount of data involved. The following formula, copied into cell A1, then copied down and across (by dragging the solid + that shows when you put your cursor over the bottom right of the cell) to the appropriate number of rows and columns, with transpose the data from Sheet 1 into whatever sheet you enter the formula. As written, it will only transpose the first 10 columns. Add more column letters to the list if you have more than 10 columns of data in Sheet1:
=INDIRECT("Sheet1!"& INDEX({"A","B","C","D","E","F","G","H","I","J"},0,ROW()) & COLUMN())
Hope that helps,