simple question

alhurayas

Board Regular
Joined
Feb 22, 2008
Messages
62
hi all I have simple question

in sheet1 I have all my data
and sheet 2 to have the same date but the ROWS should be converted to COLUMNS

thanks you very much for any the help
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Take a look at the TRANSPOSE worksheet function in Excel Help.
 
Upvote 0
Select the data in sheet. Copy it. Select sheet 2 and activate (click into) cell you want to be top left corner of data. Right click and select "Paste Special". Select radio button for transpose data. Click ok.
 
Upvote 0
I appreciate English may not be your first language but you really need to explain EXACTLY what you need.

What I posted will do what you asked but it appears what you need isn't really what you posted.

Perhaps you can start again and describe exactly what you need.

Thanks
 
Upvote 0
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,
 
Upvote 0
thank you very much Cindy Ellis
this is what I want but if there an easy way because I reached culumn (TD)
 
Upvote 0
Try this array formula (use Ctrl+Shift+Enter and not only Enter):

Code:
A1-> =INDEX(IF(Sheet1!$A$1:$E$4="","",Sheet1!$A$1:$E$4),COLUMNS($A1:A1),ROWS(A$1:A1))

Markmzz
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top