Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
brantty
 
Posts: n/a
Default copy formulas by dragging vertically

I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell Sheet2, B1
that will tell it to look to cell Sheet2, A1 and copy the cell just below
Sheet1, H1 or (=Sheet1!H2)?
  #2   Report Post  
RagDyer
 
Posts: n/a
Default copy formulas by dragging vertically

Not exactly what you asked for, but will this work for you?

In Sheet2, A1,
Enter this formula, and drag right to copy as needed:

=INDEX(Sheet1!$H:$H,COLUMNS($A:A))

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"brantty" wrote in message
...
I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to

Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell Sheet2,

B1
that will tell it to look to cell Sheet2, A1 and copy the cell just below
Sheet1, H1 or (=Sheet1!H2)?


  #3   Report Post  
Jack Sons
 
Posts: n/a
Default copy formulas by dragging vertically

Rag,

A little bit related:

In sheet2 B1 I have = Sheet1!D4 (and a lot more of that kind of stuff).
Works fine, but frequently sheet1 is "refreshed". In the refreshing process
rows 1 to 200 are deleted. After that I see in sheet2 B1 =Sheet1!#VERW!
(don't know the English error code, I use the Dutch version). Is there a
method to overcome this?

Jack Sons
The Netherlands

"RagDyer" schreef in bericht
...
Not exactly what you asked for, but will this work for you?

In Sheet2, A1,
Enter this formula, and drag right to copy as needed:

=INDEX(Sheet1!$H:$H,COLUMNS($A:A))

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"brantty" wrote in message
...
I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to

Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell
Sheet2,

B1
that will tell it to look to cell Sheet2, A1 and copy the cell just below
Sheet1, H1 or (=Sheet1!H2)?




  #4   Report Post  
Posted to microsoft.public.excel.misc
RagDyeR
 
Posts: n/a
Default copy formulas by dragging vertically

Is this what you're looking for:

=INDIRECT("Sheet1!D4")
?
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Jack Sons" wrote in message
...
Rag,

A little bit related:

In sheet2 B1 I have = Sheet1!D4 (and a lot more of that kind of stuff).
Works fine, but frequently sheet1 is "refreshed". In the refreshing process
rows 1 to 200 are deleted. After that I see in sheet2 B1 =Sheet1!#VERW!
(don't know the English error code, I use the Dutch version). Is there a
method to overcome this?

Jack Sons
The Netherlands

"RagDyer" schreef in bericht
...
Not exactly what you asked for, but will this work for you?

In Sheet2, A1,
Enter this formula, and drag right to copy as needed:

=INDEX(Sheet1!$H:$H,COLUMNS($A:A))

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"brantty" wrote in message
...
I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to

Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell
Sheet2,

B1
that will tell it to look to cell Sheet2, A1 and copy the cell just below
Sheet1, H1 or (=Sheet1!H2)?





  #5   Report Post  
Posted to microsoft.public.excel.misc
Jack Sons
 
Posts: n/a
Default copy formulas by dragging vertically

RD,

That's it! Thanks.

With formulas like that autofilling won't work? I want to cover some
onehundred cells, very tedious.

When I try in A4 of Sheet2 (the name of the other sheet is S05-06 and the
F"&ROW(A4) is for autofilling purposes)

="=INDIRECT("&"'"&"S05-06'!F"&ROW(A4)&")"

I get neatly

=INDIRECT('S05-06'!F4)

but that is text, I'm afraid. Anyway, it does not result in the value of F4
of sheet S05-06.

Also, autofilling horizontally will not work. An extra (complex) trick is
needed to change the F into G into H etc. Brrrrrr, I think I'm not on the
right track.

Can you help me further?

Jack.

"RagDyeR" schreef in bericht
...
Is this what you're looking for:

=INDIRECT("Sheet1!D4")
?
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Jack Sons" wrote in message
...
Rag,

A little bit related:

In sheet2 B1 I have = Sheet1!D4 (and a lot more of that kind of stuff).
Works fine, but frequently sheet1 is "refreshed". In the refreshing
process
rows 1 to 200 are deleted. After that I see in sheet2 B1 =Sheet1!#VERW!
(don't know the English error code, I use the Dutch version). Is there a
method to overcome this?

Jack Sons
The Netherlands

"RagDyer" schreef in bericht
...
Not exactly what you asked for, but will this work for you?

In Sheet2, A1,
Enter this formula, and drag right to copy as needed:

=INDEX(Sheet1!$H:$H,COLUMNS($A:A))

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"brantty" wrote in message
...
I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to

Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell
Sheet2,

B1
that will tell it to look to cell Sheet2, A1 and copy the cell just
below
Sheet1, H1 or (=Sheet1!H2)?









  #6   Report Post  
Posted to microsoft.public.excel.misc
RagDyer
 
Posts: n/a
Default copy formulas by dragging vertically

This will link F1 on Sheet S05-06,
To any cell that you enter it into,
In Sheet2 of the same WB:

=INDIRECT("'S05-06'!F"&ROWS($1:1)&"")

And copy down as needed.

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"Jack Sons" wrote in message
...
RD,

That's it! Thanks.

With formulas like that autofilling won't work? I want to cover some
onehundred cells, very tedious.

When I try in A4 of Sheet2 (the name of the other sheet is S05-06 and the
F"&ROW(A4) is for autofilling purposes)

="=INDIRECT("&"'"&"S05-06'!F"&ROW(A4)&")"

I get neatly

=INDIRECT('S05-06'!F4)

but that is text, I'm afraid. Anyway, it does not result in the value of

F4
of sheet S05-06.

Also, autofilling horizontally will not work. An extra (complex) trick is
needed to change the F into G into H etc. Brrrrrr, I think I'm not on the
right track.

Can you help me further?

Jack.

"RagDyeR" schreef in bericht
...
Is this what you're looking for:

=INDIRECT("Sheet1!D4")
?
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Jack Sons" wrote in message
...
Rag,

A little bit related:

In sheet2 B1 I have = Sheet1!D4 (and a lot more of that kind of stuff).
Works fine, but frequently sheet1 is "refreshed". In the refreshing
process
rows 1 to 200 are deleted. After that I see in sheet2 B1 =Sheet1!#VERW!
(don't know the English error code, I use the Dutch version). Is there a
method to overcome this?

Jack Sons
The Netherlands

"RagDyer" schreef in bericht
...
Not exactly what you asked for, but will this work for you?

In Sheet2, A1,
Enter this formula, and drag right to copy as needed:

=INDEX(Sheet1!$H:$H,COLUMNS($A:A))

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"brantty" wrote in message
...
I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to
Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell
Sheet2,
B1
that will tell it to look to cell Sheet2, A1 and copy the cell just
below
Sheet1, H1 or (=Sheet1!H2)?







  #7   Report Post  
Posted to microsoft.public.excel.misc
Jack Sons
 
Posts: n/a
Default copy formulas by dragging vertically

RD,

Marvellous.

What is the secret of &"" at the end of the formula? How does it work? It
makes all the difference, I think.

Jack.

"RagDyer" schreef in bericht
...
This will link F1 on Sheet S05-06,
To any cell that you enter it into,
In Sheet2 of the same WB:

=INDIRECT("'S05-06'!F"&ROWS($1:1)&"")

And copy down as needed.

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"Jack Sons" wrote in message
...
RD,

That's it! Thanks.

With formulas like that autofilling won't work? I want to cover some
onehundred cells, very tedious.

When I try in A4 of Sheet2 (the name of the other sheet is S05-06 and the
F"&ROW(A4) is for autofilling purposes)

="=INDIRECT("&"'"&"S05-06'!F"&ROW(A4)&")"

I get neatly

=INDIRECT('S05-06'!F4)

but that is text, I'm afraid. Anyway, it does not result in the value of

F4
of sheet S05-06.

Also, autofilling horizontally will not work. An extra (complex) trick is
needed to change the F into G into H etc. Brrrrrr, I think I'm not on the
right track.

Can you help me further?

Jack.

"RagDyeR" schreef in bericht
...
Is this what you're looking for:

=INDIRECT("Sheet1!D4")
?
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Jack Sons" wrote in message
...
Rag,

A little bit related:

In sheet2 B1 I have = Sheet1!D4 (and a lot more of that kind of stuff).
Works fine, but frequently sheet1 is "refreshed". In the refreshing
process
rows 1 to 200 are deleted. After that I see in sheet2 B1 =Sheet1!#VERW!
(don't know the English error code, I use the Dutch version). Is there
a
method to overcome this?

Jack Sons
The Netherlands

"RagDyer" schreef in bericht
...
Not exactly what you asked for, but will this work for you?

In Sheet2, A1,
Enter this formula, and drag right to copy as needed:

=INDEX(Sheet1!$H:$H,COLUMNS($A:A))

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"brantty" wrote in message
...
I have Sheet 1 with raw data in it. Sheet 2, Cell A1 is looking to
Sheet1,
H1 for the data (ex. =Sheet1!H1). What formula can I use in cell
Sheet2,
B1
that will tell it to look to cell Sheet2, A1 and copy the cell just
below
Sheet1, H1 or (=Sheet1!H2)?









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 do I copy formulas from one wkb to another w/out linkng them? tomcat Excel Worksheet Functions 10 January 4th 16 05:24 PM
copy formulas to different cells in another worksheet jskamm Excel Discussion (Misc queries) 1 August 15th 05 07:32 PM
Copy range of cells omitting formulas that result in " " Plot only cells with values in column Excel Discussion (Misc queries) 1 May 24th 05 09:52 PM
how to copy formulas to other cells in excell eugene Setting up and Configuration of Excel 1 January 17th 05 12:25 AM
Copy and dragging cells Alex Jacinto Excel Worksheet Functions 1 November 10th 04 10:19 PM


All times are GMT +1. The time now is 04:32 AM.

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"