Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 13
Default copying formula for horizontal data to vertical in different sheet

I have raw data that is horizontal in a worksheet. I need to pull it into a
report, and it needs to be vertical. For example, data is in A1, B1, C1, D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy my
formula vertically but it copies vertically from my data sheet. When I make
the row absolute by adding $ it still copies vertically even though I leave
the column as relative. I have a lot of data and it takes too long to do one
at a time. Any help would be appreciated. Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,047
Default copying formula for horizontal data to vertical in different sheet

have you tried to copy and paste special transpose?

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"twototango" escreveu:

I have raw data that is horizontal in a worksheet. I need to pull it into a
report, and it needs to be vertical. For example, data is in A1, B1, C1, D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy my
formula vertically but it copies vertically from my data sheet. When I make
the row absolute by adding $ it still copies vertically even though I leave
the column as relative. I have a lot of data and it takes too long to do one
at a time. Any help would be appreciated. Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 13
Default copying formula for horizontal data to vertical in different s

Hi,

Yes, I tried that but it doesn't work.

"Marcelo" wrote:

have you tried to copy and paste special transpose?

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"twototango" escreveu:

I have raw data that is horizontal in a worksheet. I need to pull it into a
report, and it needs to be vertical. For example, data is in A1, B1, C1, D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy my
formula vertically but it copies vertically from my data sheet. When I make
the row absolute by adding $ it still copies vertically even though I leave
the column as relative. I have a lot of data and it takes too long to do one
at a time. Any help would be appreciated. Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default copying formula for horizontal data to vertical in different sheet

Try this:

Assume you're wanting the data to start in cell A1:

=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))

Copy down as needed.

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that is horizontal in a worksheet. I need to pull it into
a
report, and it needs to be vertical. For example, data is in A1, B1, C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy my
formula vertically but it copies vertically from my data sheet. When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. I have a lot of data and it takes too long to do
one
at a time. Any help would be appreciated. Thanks!



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 13
Default copying formula for horizontal data to vertical in different s

Biff:

That is soooo excellent!! You have saved me countless hours. You are truly
an MVP!!! I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:

Try this:

Assume you're wanting the data to start in cell A1:

=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))

Copy down as needed.

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that is horizontal in a worksheet. I need to pull it into
a
report, and it needs to be vertical. For example, data is in A1, B1, C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy my
formula vertically but it copies vertically from my data sheet. When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. I have a lot of data and it takes too long to do
one
at a time. Any help would be appreciated. Thanks!






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default copying formula for horizontal data to vertical in different s

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:

That is soooo excellent!! You have saved me countless hours. You are
truly
an MVP!!! I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:

Try this:

Assume you're wanting the data to start in cell A1:

=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))

Copy down as needed.

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that is horizontal in a worksheet. I need to pull it
into
a
report, and it needs to be vertical. For example, data is in A1, B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy
my
formula vertically but it copies vertically from my data sheet. When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. I have a lot of data and it takes too long to
do
one
at a time. Any help would be appreciated. Thanks!






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 138
Default copying formula for horizontal data to vertical in different s

This is great but i can't get it to work the other way - vertical to
horizontal - Help!!

My Data runs from D7 to D230 vertically on one sheet and i want it to
display in another sheet from B9 to TT9(or there abouts!)

Regards

"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:

That is soooo excellent!! You have saved me countless hours. You are
truly
an MVP!!! I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:

Try this:

Assume you're wanting the data to start in cell A1:

=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))

Copy down as needed.

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that is horizontal in a worksheet. I need to pull it
into
a
report, and it needs to be vertical. For example, data is in A1, B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy
my
formula vertically but it copies vertically from my data sheet. When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. I have a lot of data and it takes too long to
do
one
at a time. Any help would be appreciated. Thanks!






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default copying formula for horizontal data to vertical in different s

Enter this in B9 on destination sheet.

=INDIRECT("Sheet1!D"&COLUMN(G1))

Copy across to TT9 or thereabouts.


Gord Dibben MS Excel MVP

On Thu, 14 Aug 2008 09:21:01 -0700, Jonathan
wrote:

This is great but i can't get it to work the other way - vertical to
horizontal - Help!!

My Data runs from D7 to D230 vertically on one sheet and i want it to
display in another sheet from B9 to TT9(or there abouts!)

Regards

"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:

That is soooo excellent!! You have saved me countless hours. You are
truly
an MVP!!! I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:

Try this:

Assume you're wanting the data to start in cell A1:

=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))

Copy down as needed.

--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that is horizontal in a worksheet. I need to pull it
into
a
report, and it needs to be vertical. For example, data is in A1, B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try to copy
my
formula vertically but it copies vertically from my data sheet. When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. I have a lot of data and it takes too long to
do
one
at a time. Any help would be appreciated. Thanks!







  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default copying formula for horizontal data to vertical in different s

whats does the G1 represent in your formula?

i'm trying to use this formula and my data is is array e7:e62 on sheet
1 and i need to put in a formula on a sheet 2 that starts at e20 that
will give me cell e7. when i go to cell f20 on sheet2 it will grab
cell e8 from sheet 1 and so on. please help! thanks!!


On Aug 14, 12:05*pm, Gord Dibben <gorddibbATshawDOTca wrote:
Enter this in B9 on destination sheet.

=INDIRECT("Sheet1!D"&COLUMN(G1))

Copyacross to TT9 or thereabouts.

Gord Dibben *MS Excel MVP

On Thu, 14 Aug 2008 09:21:01 -0700, Jonathan



wrote:
This is great but i can't get it to work the other way -verticalto
horizontal*- *Help!!


My Data runs from D7 to D230 vertically on one sheet and i want it to
display in another sheet from B9 to TT9(or there abouts!)


Regards


"T. Valko" wrote:


You're welcome. Thanks for the feedback!


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:


That is soooo excellent!! *You have saved me countless hours. *You are
truly
an MVP!!! *I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:


Try this:


Assume you're wanting the data to start in cell A1:


=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))


Copydown as needed.


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that ishorizontalin a worksheet. *I need to pull it
into
a
report, and it needs to bevertical. *For example, data is in A1, B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. *I then try tocopy
my
formulavertically but it copies vertically from my data sheet. *When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. *I have a lot of data and it takes too long to
do
one
at a time. *Any help would be appreciated. *Thanks!- Hide quoted text -


- Show quoted text -


  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default copying formula for horizontal data to vertical in different s

Hi, please help

My data is on sheet 1 E7:E62. i need this to display horizontally on
sheet 2 starting from E20:BH20. so e20 returns value e7 and f20
returns value e8. please help, thanks!!




On Aug 14, 12:05*pm, Gord Dibben <gorddibbATshawDOTca wrote:
Enter this in B9 on destination sheet.

=INDIRECT("Sheet1!D"&COLUMN(G1))

Copyacross to TT9 or thereabouts.

Gord Dibben *MS Excel MVP

On Thu, 14 Aug 2008 09:21:01 -0700, Jonathan



wrote:
This is great but i can't get it to work the other way -verticalto
horizontal*- *Help!!


My Data runs from D7 to D230 vertically on one sheet and i want it to
display in another sheet from B9 to TT9(or there abouts!)


Regards


"T. Valko" wrote:


You're welcome. Thanks for the feedback!


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:


That is soooo excellent!! *You have saved me countless hours. *You are
truly
an MVP!!! *I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:


Try this:


Assume you're wanting the data to start in cell A1:


=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))


Copydown as needed.


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that ishorizontalin a worksheet. *I need to pull it
into
a
report, and it needs to bevertical. *For example, data is in A1, B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. *I then try tocopy
my
formulavertically but it copies vertically from my data sheet. *When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. *I have a lot of data and it takes too long to
do
one
at a time. *Any help would be appreciated. *Thanks!- Hide quoted text -


- Show quoted text -




  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default copying formula for horizontal data to vertical in different s

Enter this formula on sheet2 E20 and copy across as needed:

=INDEX(Sheet1!$E7:$E20,COLUMNS($E20:E20))

--
Biff
Microsoft Excel MVP


wrote in message
...
whats does the G1 represent in your formula?

i'm trying to use this formula and my data is is array e7:e62 on sheet
1 and i need to put in a formula on a sheet 2 that starts at e20 that
will give me cell e7. when i go to cell f20 on sheet2 it will grab
cell e8 from sheet 1 and so on. please help! thanks!!


On Aug 14, 12:05 pm, Gord Dibben <gorddibbATshawDOTca wrote:
Enter this in B9 on destination sheet.

=INDIRECT("Sheet1!D"&COLUMN(G1))

Copyacross to TT9 or thereabouts.

Gord Dibben MS Excel MVP

On Thu, 14 Aug 2008 09:21:01 -0700, Jonathan



wrote:
This is great but i can't get it to work the other way -verticalto
horizontal - Help!!


My Data runs from D7 to D230 vertically on one sheet and i want it to
display in another sheet from B9 to TT9(or there abouts!)


Regards


"T. Valko" wrote:


You're welcome. Thanks for the feedback!


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:


That is soooo excellent!! You have saved me countless hours. You are
truly
an MVP!!! I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:


Try this:


Assume you're wanting the data to start in cell A1:


=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))


Copydown as needed.


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that ishorizontalin a worksheet. I need to pull it
into
a
report, and it needs to bevertical. For example, data is in A1,
B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. I then try
tocopy
my
formulavertically but it copies vertically from my data sheet. When
I
make
the row absolute by adding $ it still copies vertically even
though I
leave
the column as relative. I have a lot of data and it takes too long
to
do
one
at a time. Any help would be appreciated. Thanks!- Hide quoted
text -


- Show quoted text -



  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default copying formula for horizontal data to vertical in different s

=INDIRECT("Sheet1!E"&COLUMN(G1))

Enter in E20 and drag across to BH20

The G1 represent the number 7(column G) and increments to 8, 9, 10 as you
drag across.

So....................=INDIRECT("Sheet1!E"&COLUMN( G1)) is equal to
Sheet1!E7

Which changes to Sheet1!E8, Sheet1!E9 etc. as you drag across


Gord

On Thu, 28 Aug 2008 19:46:54 -0700 (PDT), wrote:

Hi, please help

My data is on sheet 1 E7:E62. i need this to display horizontally on
sheet 2 starting from E20:BH20. so e20 returns value e7 and f20
returns value e8. please help, thanks!!




On Aug 14, 12:05*pm, Gord Dibben <gorddibbATshawDOTca wrote:
Enter this in B9 on destination sheet.

=INDIRECT("Sheet1!D"&COLUMN(G1))

Copyacross to TT9 or thereabouts.

Gord Dibben *MS Excel MVP

On Thu, 14 Aug 2008 09:21:01 -0700, Jonathan



wrote:
This is great but i can't get it to work the other way -verticalto
horizontal*- *Help!!


My Data runs from D7 to D230 vertically on one sheet and i want it to
display in another sheet from B9 to TT9(or there abouts!)


Regards


"T. Valko" wrote:


You're welcome. Thanks for the feedback!


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
Biff:


That is soooo excellent!! *You have saved me countless hours. *You are
truly
an MVP!!! *I will love you forever!!!!!!!!!!!!!


"T. Valko" wrote:


Try this:


Assume you're wanting the data to start in cell A1:


=INDEX('Raw Data'!A$1:E$1,ROWS(A$1:A1))


Copydown as needed.


--
Biff
Microsoft Excel MVP


"twototango" wrote in message
...
I have raw data that ishorizontalin a worksheet. *I need to pull it
into
a
report, and it needs to bevertical. *For example, data is in A1, B1,
C1,
D1,
E1 ..... In my report sheet I enter ='Raw Data'!A1. *I then try tocopy
my
formulavertically but it copies vertically from my data sheet. *When I
make
the row absolute by adding $ it still copies vertically even though I
leave
the column as relative. *I have a lot of data and it takes too long to
do
one
at a time. *Any help would be appreciated. *Thanks!- Hide quoted text -


- Show quoted text -


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
moving data from vertical to horizontal possition leo Excel Worksheet Functions 4 April 28th 08 09:08 PM
Need lookup of data both vertical and horizontal rmargh Excel Discussion (Misc queries) 2 November 21st 07 05:10 PM
how to copy a cell with formula from sheet 1 (data is all vertical) into sheet 2 parag Excel Worksheet Functions 3 June 15th 06 10:29 PM
How to make Horizontal data go Vertical tx12345 Excel Worksheet Functions 10 December 24th 05 03:40 AM
tranfere vertical data to horizontal tabel dagfinn Excel Worksheet Functions 2 January 29th 05 06:19 PM


All times are GMT +1. The time now is 08:37 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"