ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Reference a cell from a another sheet that is always 24 rows away (https://www.excelbanter.com/excel-worksheet-functions/124293-reference-cell-another-sheet-always-24-rows-away.html)

rhhince

Reference a cell from a another sheet that is always 24 rows away
 
I need to reference a cell from a another sheet that is always 24 rows
away and in same column. i.e.

B52='HOURLY ANALYSIS'!BI1507
B53='HOURLY ANALYSIS'!BI1531

How to I get 'HOURLY ANALYSIS'!BI1531 to change automatically without
changing it manually?
Thanks.


Chip Pearson

Reference a cell from a another sheet that is always 24 rows away
 
Use the following formula in cell B52

=INDIRECT("'Hourly Analysis'!BI"&507+(ROW()-52)*24)

and fill down as far as you need to go. Be careful with the mix of single
quotes (') and double quotes (").




"rhhince" wrote in message
oups.com...
I need to reference a cell from a another sheet that is always 24 rows
away and in same column. i.e.

B52='HOURLY ANALYSIS'!BI1507
B53='HOURLY ANALYSIS'!BI1531

How to I get 'HOURLY ANALYSIS'!BI1531 to change automatically without
changing it manually?
Thanks.




Chip Pearson

Reference a cell from a another sheet that is always 24 rows away
 
I misread your cell addresses. Use

=INDIRECT("'Hourly Analysis'!BI"&1507+(ROW()-52)*24)

in cell B52 and fill down as far as you need to go.

This formula can be adapted to read any series of data from colum BI. Change
the 1507 to the first row with source data, 52 to the start row of the
result formulas, and 24 to the interval between the returned values.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)


"Chip Pearson" wrote in message
...
Use the following formula in cell B52

=INDIRECT("'Hourly Analysis'!BI"&507+(ROW()-52)*24)

and fill down as far as you need to go. Be careful with the mix of single
quotes (') and double quotes (").




"rhhince" wrote in message
oups.com...
I need to reference a cell from a another sheet that is always 24 rows
away and in same column. i.e.

B52='HOURLY ANALYSIS'!BI1507
B53='HOURLY ANALYSIS'!BI1531

How to I get 'HOURLY ANALYSIS'!BI1531 to change automatically without
changing it manually?
Thanks.






T. Valko

Reference a cell from a another sheet that is always 24 rows away
 
Here's another one:

=INDEX('Hourly Analysis'!BI$1507:BI$2500,(ROWS($1:1)-1)*24+1)

Copy down as needed. Also, adust for the correct end of the range: BI$2500

Biff

"rhhince" wrote in message
oups.com...
I need to reference a cell from a another sheet that is always 24 rows
away and in same column. i.e.

B52='HOURLY ANALYSIS'!BI1507
B53='HOURLY ANALYSIS'!BI1531

How to I get 'HOURLY ANALYSIS'!BI1531 to change automatically without
changing it manually?
Thanks.




Arvi Laanemets

Reference a cell from a another sheet that is always 24 rows away
 
Hi

I´m somewhat unsure, which sheet is the one you enter the values, and which
one has to refer to cells on another sheet.

When you are entering values into sheet 'HOURLY ANALYSIS', then on another
sheet enter just the same formula like the one you did give here, i.e. into
cell B52 you enter the formula
=IF('HOURLY ANALYSIS'!BI1507="","",'HOURLY ANALYSIS'!BI1507)
, and copy it down/up - cell references are adjusted automatically when
copied.

When you enter your values into another sheet, and want 'HOURLY ANALYSIS'
sheet to mirror them, then into 'HOURLY ANALYSIS'!BI1507 enter the formula
=IF('Sheet Name'!BI52="","",'Sheet Name'!BI52)
, and copy it down/up.


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



"rhhince" wrote in message
oups.com...
I need to reference a cell from a another sheet that is always 24 rows
away and in same column. i.e.

B52='HOURLY ANALYSIS'!BI1507
B53='HOURLY ANALYSIS'!BI1531

How to I get 'HOURLY ANALYSIS'!BI1531 to change automatically without
changing it manually?
Thanks.




Chip Pearson

Reference a cell from a another sheet that is always 24 rows away
 
Now that I think about it, I prefer the formula

=OFFSET($BI$1507,(ROW()-52)*24,0,1,1)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)


"Chip Pearson" wrote in message
...
I misread your cell addresses. Use

=INDIRECT("'Hourly Analysis'!BI"&1507+(ROW()-52)*24)

in cell B52 and fill down as far as you need to go.

This formula can be adapted to read any series of data from colum BI.
Change the 1507 to the first row with source data, 52 to the start row of
the result formulas, and 24 to the interval between the returned values.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)


"Chip Pearson" wrote in message
...
Use the following formula in cell B52

=INDIRECT("'Hourly Analysis'!BI"&507+(ROW()-52)*24)

and fill down as far as you need to go. Be careful with the mix of single
quotes (') and double quotes (").




"rhhince" wrote in message
oups.com...
I need to reference a cell from a another sheet that is always 24 rows
away and in same column. i.e.

B52='HOURLY ANALYSIS'!BI1507
B53='HOURLY ANALYSIS'!BI1531

How to I get 'HOURLY ANALYSIS'!BI1531 to change automatically without
changing it manually?
Thanks.









All times are GMT +1. The time now is 05:55 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com