Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default COPY FROM COLUMN TO ROW

I have two worksheets set up, one has data entered weekly in a row. i need
to copy this data to the other worksheets by column. my question is, i have
the first column going to the first row in the correct places. Right now if
i drag it down cell B118 becomes B119 in the first column, is there a way to
make it go to C118 instead of changing the 118 to 119 when i drag it down? I
tried using B$118 but then i still get B118 i need it to read C118. I have
52 rows i need to drag down and do not feal like doing each one individually.

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 772
Default COPY FROM COLUMN TO ROW

Hilight the row, copy, then select the first cell in a blank column, right
click, paste spectial, and check the Transpose box at the bottom
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"LEOPARDSHIDEAWAY" wrote:

I have two worksheets set up, one has data entered weekly in a row. i need
to copy this data to the other worksheets by column. my question is, i have
the first column going to the first row in the correct places. Right now if
i drag it down cell B118 becomes B119 in the first column, is there a way to
make it go to C118 instead of changing the 118 to 119 when i drag it down? I
tried using B$118 but then i still get B118 i need it to read C118. I have
52 rows i need to drag down and do not feal like doing each one individually.

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 271
Default COPY FROM COLUMN TO ROW

I am not transposing my row to the exact columns, my rows are in different
columns, i jsut need to now if there is a way to drag down the rows with it
changing the column number instead of row number

"John Bundy" wrote:

Hilight the row, copy, then select the first cell in a blank column, right
click, paste spectial, and check the Transpose box at the bottom
--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"LEOPARDSHIDEAWAY" wrote:

I have two worksheets set up, one has data entered weekly in a row. i need
to copy this data to the other worksheets by column. my question is, i have
the first column going to the first row in the correct places. Right now if
i drag it down cell B118 becomes B119 in the first column, is there a way to
make it go to C118 instead of changing the 118 to 119 when i drag it down? I
tried using B$118 but then i still get B118 i need it to read C118. I have
52 rows i need to drag down and do not feal like doing each one individually.

Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default COPY FROM COLUMN TO ROW

=INDEX($118:$118,ROWS($118:118))

Entered in a cell and copied down.


Gord Dibben MS Excel MVP

On Mon, 23 Jul 2007 12:16:03 -0700, LEOPARDSHIDEAWAY
wrote:

I have two worksheets set up, one has data entered weekly in a row. i need
to copy this data to the other worksheets by column. my question is, i have
the first column going to the first row in the correct places. Right now if
i drag it down cell B118 becomes B119 in the first column, is there a way to
make it go to C118 instead of changing the 118 to 119 when i drag it down? I
tried using B$118 but then i still get B118 i need it to read C118. I have
52 rows i need to drag down and do not feal like doing each one individually.

Thanks!


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 256
Default COPY FROM COLUMN TO ROW

The $ symbol denotes an absolute reference following. This means
that, if you are entering B$118 (where B is column and 118 is row),
118 will stay the same (absolute), but the column will change
depending on how many rows it moved.

For instance, if you have =B$118 entered in cell and copy/paste (not
cut/paste) this cell into a cell 6 columns to the right, it will
change to =H$118. If, after doing that, you copy/paste this new cell
down 10 rows, it will remain H$118. Corrollarily, if you have a
reference (that you're dragging down) in row 118, and it reads 119,
chances are you started dragging it somewhere such as row 2, with the
reference being to a cell in row 3.'

It seems like, from what I can understand of your description of the
problem, you have to backtrack to the original formula you're
dragging, and seeing whether it refers to the proper row. Otherwise,
all your data based on the cells in this column will be off by a row.


On Jul 23, 3:16 pm, LEOPARDSHIDEAWAY
wrote:
I have two worksheets set up, one has data entered weekly in a row. i need
to copy this data to the other worksheets by column. my question is, i have
the first column going to the first row in the correct places. Right now if
i drag it down cell B118 becomes B119 in the first column, is there a way to
make it go to C118 instead of changing the 118 to 119 when i drag it down? I
tried using B$118 but then i still get B118 i need it to read C118. I have
52 rows i need to drag down and do not feal like doing each one individually.

Thanks!





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default COPY FROM COLUMN TO ROW

=OFFSET($B$118,0,ROW()-ROW(first_ref)) where first_ref is the absolute
reference of the cell in which you have the formula pointing to B118.
--
David Biddulph

"LEOPARDSHIDEAWAY" wrote in
message ...
I have two worksheets set up, one has data entered weekly in a row. i need
to copy this data to the other worksheets by column. my question is, i
have
the first column going to the first row in the correct places. Right now
if
i drag it down cell B118 becomes B119 in the first column, is there a way
to
make it go to C118 instead of changing the 118 to 119 when i drag it down?
I
tried using B$118 but then i still get B118 i need it to read C118. I
have
52 rows i need to drag down and do not feal like doing each one
individually.

Thanks!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to search column, copy row, and copy to another sheet in same Rockhound Excel Discussion (Misc queries) 1 December 9th 06 04:16 PM
how to make one column copy from one sheet to anoth column w/o zer areezm Excel Discussion (Misc queries) 3 June 6th 06 10:45 PM
how to copy contents of one column to another column in another worksheet yefei Excel Discussion (Misc queries) 3 February 25th 06 05:57 PM
To copy values in a column relevant to text in an adjacent column? Guy Keon Excel Worksheet Functions 2 November 15th 05 08:10 PM
Can I copy a row to a column? Dennis Harrelson New Users to Excel 5 March 12th 05 01:01 AM


All times are GMT +1. The time now is 10:07 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"