VBA VLookUp Help (Thanks ahead of time!)

krfo12

New Member
Joined
Jun 13, 2018
Messages
2
Hi!


I am very new to VBA and am trying to write a procedure where I use a vlookup to populate information in my active sheet from an external and closed excel document. I would like to use VBA and not a formula.


I need to lookup cell A2 on my ActiveSheet and return the corresponding job name from "Job#Log," which is an external excel workbook with multiple sheets.


I would like the result to be displayed in cell B2 of my ActiveSheet.


This procedure will need to loop down each entry until it reaches the end of the list.


This is what I have so far:


Code:
Sub VLookUp_JobNumberLog()

Dim strLocation As String, strFile As String 'declaring variable
[INDENT]strLocation = "C:\Users\kowens\Box\Insurance (Working Folder)\Job#Log.xlsx" 'definition of variable as location of the external file where the information shall be looked up[/INDENT]

Dim JobNumber As String 'variable for the information that I need looked up
[INDENT]JobNumber  = ActiveSheet.Range("A2").Value 'defines variable as value of cell in active sheet[/INDENT]

Dim vlJobName As Variant 'declaring variable
[INDENT]vlJobName=Application.WorksheetFunction.VLookup(JobNumber,Workbooks("Job#Log.xlsx").Sheets("JobNumberLog").Range("A:B"),2,False) 'variable value is the vlookup[/INDENT]

JobNumber.Offset(0,1).Value=vlJobName 'puts result of VLookUp into cell adjacent to JobNumber, in this instance B2

End Sub

If you could comment out the steps so I know what you are doing that would be really helpful.


Any assistance you provide is greatly appreciated!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
The workbook would need to be open if you want to use Application.WorksheetFunction.Vlookup(...).
 
Upvote 0
Do you mind my asking why not with a formula?

Because this file is already running large array formulas and having the addition of a VLookUp causes excel to be unhappy.

Currently, I have the VLookUp run and then copy+paste it as a value into the field. That seems to work the majority of the time. I was just wonder if I could do a simple vlookup using VBA.
 
Upvote 0

Forum statistics

Threads
1,214,547
Messages
6,120,139
Members
448,948
Latest member
spamiki

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