Copy and paste from column to row

sburkhar

Active Member
Joined
Oct 4, 2006
Messages
363
Is there a way to copy a formula...........crap, I don't know how to write this....


across the top of my page it looks like this:
A B C D
=C1 =C2 =C3 =C4 etc


Is it possible to copy and paste that formula across the columns? 'cause I have 150 columns.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try this.
Assuming your data in C1:C150 at cell D1 paste in formula:

Code:
=INDIRECT("C"&COUNTA($C$1:C1))

...and copy across row 1 as far as needed
 
Upvote 0
I'm sorry, I should have been more clear.
C1:C150 are on another tab. So the formula is actually: =Sheet1!C1 etc

Can you rewrite it for me to encompass that?
 
Upvote 0
At cell B1 of any sheet other than sheet1 enter formula:
Code:
=INDIRECT("Sheet1!C"&COUNTA($A$1:A1)+1)

and copy across.
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,405
Members
452,911
Latest member
a_barila

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