#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Referencing Tabs

Here is the formula that I have inputed; however I am still getting a #NUM!
error.

=INDEX(+Equity!$E:$E,$E127+($E$13*(COLUMN()-5)))

I'm in the 'IRR' tab and am working in row 5, and I need to reference cells
in the 'Equity' tab. I need to reference Equity!E127, and then every 13th
row (in column e) after that. I would like to be able to drag this formula
(in the 'IRR' tab)across row 5 (in the IRR tab) and reference every 13th row
(in the Equity tab) in column E.

Thank you for the help!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Referencing Tabs

In A5 of Sheet1, I used =INDEX(Equity!$E:$E,127+(COLUMN()-1)*13)
I dragged this across the row and it gave me references to every 13th cell
in the other sheet.

Index for a single column needs INDEX(array, row-value), where row-value is
a number referring to the POSITION not the CELL REFERENCE within the array

Note the -1 is there since I started in column 1; if I start in column E
then I need -5
(The + in your formula is not needed)
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"jordanpcpre" wrote in message
...
Here is the formula that I have inputed; however I am still getting a
#NUM!
error.

=INDEX(+Equity!$E:$E,$E127+($E$13*(COLUMN()-5)))

I'm in the 'IRR' tab and am working in row 5, and I need to reference
cells
in the 'Equity' tab. I need to reference Equity!E127, and then every 13th
row (in column e) after that. I would like to be able to drag this
formula
(in the 'IRR' tab)across row 5 (in the IRR tab) and reference every 13th
row
(in the Equity tab) in column E.

Thank you for the help!



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Referencing Tabs

Thank you for the help Bernard. I almost have it.

My current formula in cell IRR!L7:
=INDEX(Equity!$E:$E,127+(COLUMN( )-5)*13)

I am in cell L7 of the IRR tab trying to reference cell E127 in the Equity
tab. Should the above formula reference the Equity!E127 cell correctly? I
would then like to drag this formula one column to the right and have it
reference automatically 13 rows below Equity!E127 (so IRR!M7 should reference
Equity!E140).

I would like to drag this formula to the right as far as necessary.

Thanks! We almost have it!


"Bernard Liengme" wrote:

In A5 of Sheet1, I used =INDEX(Equity!$E:$E,127+(COLUMN()-1)*13)
I dragged this across the row and it gave me references to every 13th cell
in the other sheet.

Index for a single column needs INDEX(array, row-value), where row-value is
a number referring to the POSITION not the CELL REFERENCE within the array

Note the -1 is there since I started in column 1; if I start in column E
then I need -5
(The + in your formula is not needed)
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"jordanpcpre" wrote in message
...
Here is the formula that I have inputed; however I am still getting a
#NUM!
error.

=INDEX(+Equity!$E:$E,$E127+($E$13*(COLUMN()-5)))

I'm in the 'IRR' tab and am working in row 5, and I need to reference
cells
in the 'Equity' tab. I need to reference Equity!E127, and then every 13th
row (in column e) after that. I would like to be able to drag this
formula
(in the 'IRR' tab)across row 5 (in the IRR tab) and reference every 13th
row
(in the Equity tab) in column E.

Thank you for the help!




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Referencing Tabs

If the formula is in column L then COLUMN value is 12
So the formula computes to INDEX(Equity!$E:$E,127+(12-5)*13)
Or INDEX(Equity!$E:$E,127+7*13) or INDEX(Equity!$E:$E, 218*13)

You want INDEX(Equity!$E:$E,127+(COLUMN()-12)*13) to get
INDEX(Equity!$E:$E,127+0*13) or
INDEX(Equity!$E:$E,127)

best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email


"jordanpcpre" wrote in message
...
Thank you for the help Bernard. I almost have it.

My current formula in cell IRR!L7:
=INDEX(Equity!$E:$E,127+(COLUMN( )-5)*13)

I am in cell L7 of the IRR tab trying to reference cell E127 in the Equity
tab. Should the above formula reference the Equity!E127 cell correctly?
I
would then like to drag this formula one column to the right and have it
reference automatically 13 rows below Equity!E127 (so IRR!M7 should
reference
Equity!E140).

I would like to drag this formula to the right as far as necessary.

Thanks! We almost have it!


"Bernard Liengme" wrote:

In A5 of Sheet1, I used =INDEX(Equity!$E:$E,127+(COLUMN()-1)*13)
I dragged this across the row and it gave me references to every 13th
cell
in the other sheet.

Index for a single column needs INDEX(array, row-value), where row-value
is
a number referring to the POSITION not the CELL REFERENCE within the
array

Note the -1 is there since I started in column 1; if I start in column E
then I need -5
(The + in your formula is not needed)
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"jordanpcpre" wrote in message
...
Here is the formula that I have inputed; however I am still getting a
#NUM!
error.

=INDEX(+Equity!$E:$E,$E127+($E$13*(COLUMN()-5)))

I'm in the 'IRR' tab and am working in row 5, and I need to reference
cells
in the 'Equity' tab. I need to reference Equity!E127, and then every
13th
row (in column e) after that. I would like to be able to drag this
formula
(in the 'IRR' tab)across row 5 (in the IRR tab) and reference every
13th
row
(in the Equity tab) in column E.

Thank you for the help!






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
hide tabs from view then lock tabs? slowboat Excel Discussion (Misc queries) 1 December 19th 07 07:06 AM
referencing a different tab by referencing a list in the current s Kevin Excel Worksheet Functions 3 July 6th 07 07:57 PM
Can i set up tabs within tabs on Excel? Gizelle Excel Worksheet Functions 5 October 30th 06 12:52 PM
Referencing Sheet Tabs DB Excel Worksheet Functions 7 October 7th 05 06:14 PM
Referencing Sheet Tabs captain stephen Excel Discussion (Misc queries) 3 April 1st 05 02:05 AM


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