Replacing Vlookup Formula witha more efficient substitute

Kearnd967

New Member
Joined
Aug 25, 2015
Messages
2
Good morning, We have a number of large spreadsheets which are full of vlookup formulas between multiple workbooks. I have started replacing them with Index Match and this has worked really well. We have a scenario where Index match doesn't seem to work, and i would like some advise on a more efficient formula to use in the situation. We need the vlookup function to use the number of columns accross that is available on the third part of the lookup formula.

At present the formula we use is
VLOOKUP(B15, 'Actual 2015'$B$7:$IW$69994, ($c$1+$AB$3),0)

The spreadsheet in question is a summary sheet showing YTD financial information
Actual 2015 is financial info for the year broken down by month
B15 is a material Code
C1 is the month
AB3 is the a number row that runs across the top of the summary sheet.
(C1 and AB3 make up the lookup number in the other sheet)

I look forward to your creative answers!
David.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Why doesn't Index/Match work?
Code:
=INDEX(OFFSET('Actual 2015'$B:$B,,$C$1+$D$1-1),MATCH(B15,'Actual 2015'$B:$B,0))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,589
Messages
6,131,591
Members
449,657
Latest member
Timber5

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