What formula (between these two formulas) would use more system resources?

dikken20

Board Regular
Joined
Feb 25, 2009
Messages
130
Office Version
  1. 2010
Platform
  1. Windows
Hi,
My excel file calculation takes too long, I've been told to change to different formulas in order to use less system resources, thus, calculation will take much less time to run.

Which of the following formulas uses less/more system resources:

=INDEX(Sheet1!$C$2:$G$600,MATCH(M2,Sheet1!$C$2:$C$600,0),5)

or

=VLOOKUP($M2,Sheet1!$C$2:$G$600,5,FALSE)

?
 
Last edited:
Assuming you need to return more than one of "Last price, High, Low, Volume, Change, etc,.." for a given stock identifier, then yes, you should use one MATCH formula and several INDEX formulas.

If sheet1 is, or can be, sorted on column C, then the double vlookup will be a lot faster than your initial VLOOKUP because it will not have to search row by row. Note that it does not use the fourth FALSE argument.
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.

Forum statistics

Threads
1,216,729
Messages
6,132,383
Members
449,725
Latest member
Enero1

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