I have a large Macro and want to incorporate a VBA lookup, so I can remove the formula from my sheets at it is very slow running and saving.
I know there are several ways of doing this, but I am looking for an easy code to adapt as I have 10 lookup columns
The code needs to work down a list of 60,000 records. - All the codes I am finding online are for one specific cell lookup and not run down the entire column.
Ideally I want to define the Columns and worksheets to better understand the code.
The two Worksheets are 'Main' and 'Lookup'
Example Set Dim imain, ilookup as worksheet
then Set imain = Sheet ("Main")
I'm looking to go down the Application.WorksheetFunction.Vlookup route
But want to Specify the column ranges if possible. Either in the VB code. So Status = Range ("A:B")
or Highlighting the whole range in Excel and defining the group as Status. The code could then refer to 'Status'
Bookmarks