VLookup across multiple tabs - specify searchable tabs based on month name (not every tab)

SheriffWoody

New Member
Joined
Jul 7, 2015
Messages
3
I'm looking to run a vlookup across multiple tabs; however, I'd like to specify the lookup to only search within tabs starting with the current month / user defined date.

I located the below which has been extremely useful with pulling the data across EVERY tab but I need help with editing the code to only set the tabs starting with July, August, etc... as the parameter range.

Vlookup. Excel Vlookup Across Excel Worksheets. Custom VLookup Formula/Function

Function VLOOKAllSheets(Look_Value As Variant, Tble_Array As Range, _

Col_num as Integer, Optional Range_look as Boolean)

Dim wSheet As Worksheet

Dim vFound



On Error Resume Next



For Each wSheet In ActiveWorkbook.Worksheets

With wSheet

Set Tble_Array = .Range(Tble_Array.Address)

vFound = WorksheetFunction.VLookup _
(Look_Value, Tble_Array, _
Col_num, Range_look)

End With

If Not IsEmpty(vFound) Then Exit For

Next wSheet

Set Tble_Array = Nothing

VLOOKAllSheets = vFound

End Function
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple

Forum statistics

Threads
1,214,918
Messages
6,122,246
Members
449,075
Latest member
staticfluids

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