Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide tabs from view then lock tabs? | Excel Discussion (Misc queries) | |||
referencing a different tab by referencing a list in the current s | Excel Worksheet Functions | |||
Can i set up tabs within tabs on Excel? | Excel Worksheet Functions | |||
Referencing Sheet Tabs | Excel Worksheet Functions | |||
Referencing Sheet Tabs | Excel Discussion (Misc queries) |