Index function

Weimer

New Member
Joined
Feb 9, 2005
Messages
3
I am trying to reference a text string in place of an array for an index formula. Any suggestions? Basically, I want to simplify some very long index formulas because they use too many characters in one formula for the cell to compute. It's causing excel to lock up on me. Here's what I want to do, but I can't quite get it to work -

Instead of using =index(array,row,column), I want to make cell A1 = a text string representing the file path to the array I need to reference. I'd like to be able to have a formula similar to =index(A1,row, column).

Any ideas would be graetly appreciated.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
That will actually cause more problems than it would solve, because INDIRECT() , the function you could use, is volatile, which means that it gets recalculated EVERY TIME the workbook is calculated, so your calculation times will get worse !
 
Upvote 0
INDIRECT()

Any direction on how to use this function here anyway? Long wait times wouldn't really be an issue. Right now the formula often locks up to the point that excel shuts itself down and I have to recover any unsaved changes. The other part of the issue is the index formula is repeated over a lot of cells. Any changes ( which occur often) to the file path require a tedious replacement process because of the length of the formula and the difficullty excel has in calculating. To be able to make changes in one cell and refresh would also help a lot.
 
Upvote 0
Re: INDIRECT()

Weimer said:
Any direction on how to use this function here anyway? Long wait times wouldn't really be an issue. Right now the formula often locks up to the point that excel shuts itself down and I have to recover any unsaved changes. The other part of the issue is the index formula is repeated over a lot of cells. Any changes ( which occur often) to the file path require a tedious replacement process because of the length of the formula and the difficullty excel has in calculating. To be able to make changes in one cell and refresh would also help a lot.

If you insist...

=INDEX(INDIRECT(A1),RowIdx,ColIdx)
 
Upvote 0

Forum statistics

Threads
1,214,881
Messages
6,122,074
Members
449,064
Latest member
MattDRT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top