Creating a dynamic range using Index

bearcub

Well-known Member
Joined
May 18, 2005
Messages
701
Office Version
  1. 365
  2. 2013
  3. 2010
  4. 2007
Platform
  1. Windows
I'm using the index match formula as my lookup formula:

Code:
 INDEX('All SCC Ready to Import'!$A$2:$A$800,MATCH('LocalStateSCC Falcon Positions'!H30,'All SCC Ready to Import'!$E$2:$E$800,0))[/I][/B]

I would like to make this lookup dynamic without having to change the range from A2 :A1000 for example.

I thought I would be able to use the a2:Index(A:A,count(A:A) logic in the formula but where would I stick this inside the index match formula?

Thank you for your help.

michael
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Could you not simply insert a table which will naturally encompass all new rows of data?

alternatively you could create dynamic named ranges, which you could then reference which also makes your formula easier to read if you ever need to revisit it later.
 
Upvote 0
You do have some good ideas there. what to you mean by inserting a table?

I haven't thought about using dynamic ranges but you're right that could be an alternative.

However, I would like to know how to nest a dynamic range like this for future reference. One never knows when they come in handy.

I'll keep the dynamic range in mind, that one skipped me completely though I can see where that would come in handy though my spreadsheet is 60 columns wide.

Michael
 
Upvote 0
In my spreadsheets, they are all text -- first and last names. I have a spreadsheet that is provided by our Governance department (I work for the California Teacher's Association) which tells us who is on the State Council committees. The sheet that this formula sits on is adding a member ID that is on this sheet from the All SCC Ready to Import sheet. It's a workaround that I had to create for our leadership Directory Reports.

Would the approach be different if they were numeric?

Michael
 
Upvote 0
In my spreadsheets, they are all text -- first and last names. I have a spreadsheet that is provided by our Governance department (I work for the California Teacher's Association) which tells us who is on the State Council committees. The sheet that this formula sits on is adding a member ID that is on this sheet from the All SCC Ready to Import sheet. It's a workaround that I had to create for our leadership Directory Reports.

Would the approach be different if they were numeric?

Michael

1. Define Arange (adjust for any other more convenient name) in the Name Manager as referring to:
Rich (BB code):
='All SCC Ready to Import'!$A$2:INDEX('All SCC Ready to Import'!$A:$A,MATCH(REPT("z",255),'All SCC Ready to Import'!$E:$E))

2.
Define
Erange (adjust for any other more convenient name) in the Name Manager as referring to:
Rich (BB code):
='All SCC Ready to Import'!$E$2:INDEX('All SCC Ready to Import'!$E:$E,MATCH(REPT("z",255),'All SCC Ready to Import'!$E:$E))


Now you can invoke:
Rich (BB code):
=INDEX(Arange,MATCH('LocalStateSCC Falcon Positions'!H30,Erange,0))

 
Last edited:
Upvote 0
Thank you Aladdin.

So, the trick is to create a dynamic range first via a named range.

You use the Rept Z, 255 argument to get the last entry in the range (since it can't find all the z's it bounces back to the last one item in the range)? Is this how this work>

Does using the technique affect calculation time if i had ranges going down thousands of rows (I don't in this spreadsheet but I might in the future).

I've seen this technique in a number of Mike Girvin videos where he has quoted you as coming up with this approach (which totally blows me away because I think it is so cool!)

Thank you for the tip.

Michael
 
Upvote 0
Thank you Aladdin.

You are welcome.

So, the trick is to create a dynamic range first via a named range.

Yes.

You use the Rept Z, 255 argument to get the last entry in the range (since it can't find all the z's it bounces back to the last one item in the range)? Is this how this work>

Yes.

Does using the technique affect calculation time if i had ranges going down thousands of rows (I don't in this spreadsheet but I might in the future).

No, not much it has to.

I've seen this technique in a number of Mike Girvin videos where he has quoted you as coming up with this approach (which totally blows me away because I think it is so cool!)

Thank you for the tip.

Michael

If needed, you can optimize the look up formula, if you are willing to sort Arange and Erange on Erange in ascending order.
 
Upvote 0
Thank you, I'll add this approach to my template file when I get to work this morning.

Neat stuff, thank you again!

Michael
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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