Paste Special Transpose

mimih23

Board Regular
Joined
Oct 14, 2010
Messages
89
In order to pull data from an internal source, I have to provide it in a manner where the items are listed horizontally. The original data source is vertical in excel. Usually I take 100 to 200 items at a time and paste special (transpose) them into another sheet.....paste them into a text file, replace all spaces with semicolons and wala it's ready to go. Given that I have a deadline less than a week is there any way to transpose a large quantity (say 1900) at one time??? Let me know!!:eek:
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
You could use a formula, like this, to do it:
Code:
=OFFSET(Sheet1!$A$2,1+(ROW()-1)*100+COLUMN()-1,0,1,1)
entered into cell A1 of a new sheet, changing Sheet1 to whatever sheet you are fetching from. Copied across to fill 100 cells, and then copy downwards as necessary.
 
Upvote 0
You could use a formula, like this, to do it:
Code:
=OFFSET(Sheet1!$A$2,1+(ROW()-1)*100+COLUMN()-1,0,1,1)
entered into cell A1 of a new sheet, changing Sheet1 to whatever sheet you are fetching from. Copied across to fill 100 cells, and then copy downwards as necessary.



I just have to say that I love you! That worked! Thanks so much!!!
That count down hours of unnecessary stress.:ROFLMAO:
 
Upvote 0
Wow, I'm blushing ... am so glad that it's made you so happy :biggrin:
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,973
Members
449,059
Latest member
oculus

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