View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Copying formulas in Columns and transpose to rows?

Let's assume you want the formulas in A1:C1

Enter this formula in A1 and copy across to C1:

=INDEX(Tally!$D10:$D12,COLUMNS($A1:A1))

--
Biff
Microsoft Excel MVP


"Terri" wrote in message
...
I have a 2007 worksheet that has formulas in a Column:
=Tally!D10
=Tally!D11
=Tally!D12

How do I transpose the formula columns to rows like:
==Tally!D10 =Tally!D11 =Tally!D12

Now when I copy and Paste special (Transpose) is translates like:
==Tally!D10 =Tally!E10 =Tally!F10

Which is not the data I need?