Transpose cells with formulae..

Chartist

Board Regular
Joined
Apr 2, 2007
Messages
138
Office Version
  1. 365
Platform
  1. Windows
Hi, I have a long vertical list of values (A1, A2, A3,....) . I want to report these values horizontally, in cells B1,C1,D1,.....
The only way I know is to type =A1 in cell B1, =A2 in cell C1 and so on, which will waste several hours of my time (this situation keeps coming up repeatedly as well.) Transpose is not keeping the formulae absolute, so any ideas to do this faster?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Paste the following into B1, then copy across as far as necessary:
=OFFSET($A$1,COLUMN()-2,0)
 
Upvote 0
If you want to preserve the exact formulas, select the cells and choose Edit|Replace What = With != to convert your formulas to text. Then Copy|Paste Special|Transpose. Finally replace != with =.
 
Upvote 0
Nevermind

njimack's Offset formula is way better than my Indirect


But Index is not volatile, so this may be better

=INDEX($A:$A,COLUMN(A1))
 
Last edited:
Upvote 0
Jonmo,

I was just about to edit my post to include an alternative, using INDIRECT:
=INDIRECT("A"&COLUMN()-1)
 
Upvote 0

Forum statistics

Threads
1,214,791
Messages
6,121,611
Members
449,038
Latest member
apwr

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