VLookup in VBA Excel
Last Updated :
-
Blog Author :
Edited by :
Reviewed by :
Table Of Contents
VLOOKUP Function in Excel VBA
The VLOOKUP function in Excel searches a value in an array and returns its corresponding value from another column. The value to search should be present in the first column. It is also required to mention whether to look for an exact or approximate match. We can use the worksheet function VLOOKUP in VBA coding. However, the function is not built-in VBA. Thus, we can only call using the worksheet.
The VLOOKUP function in Excel has the following syntax:
In which lookup_value is the value to look for, table_arrray is the table, col_index_num is the column number of the return value, and range_lookup signifies if the match is exact or approximate. The range_lookup can be TRUE/FALSE or 0/1.
In VBA code, one can use the VLOOKUP function:
Application.WorksheetFunction.vlookup(lookup_value, table_array, col_index_num, range_lookup)
How to Use VLookup in Excel VBA?
Below are some examples of the VLOOKUP code in Excel VBA.
VLookup Code in Excel VBA Example #1
Let us see how we can call the worksheet function VLOOKUP in Excel VBA.
Suppose you have the data on students’ IDs, names, and average marks.
Now, you want to look up the marks obtained by a student with ID 11004.
To lookup for the value, follow the following steps:
- Go to the "Developer" tab and click on "Visual Basic."
- Under the VBA window, go to "Insert" and click on "Module."
- Now, write the VBA VLOOKUP code. For example, we can use the following VBA VLOOKUP code.
Sub vlookup1()
Dim student_id As Long
Dim marks As Long
student_id = 11004
Set myrange = Range("B4:D8")
marks = Application.WorksheetFunction.VLookup(student_id, myrange, 3, False)
End Sub
Firstly, define a student ID, which is the lookup value. Therefore, we define:
student_id = 11004
Next, we define the range in which the value and the return value exist. Since our data is present in the cells B4:D8, we define a range- myrange as:
Set myrange = Range("B4:D8")
Finally, we input the VLOOKUP function using the Worksheet function in a variable marks as:
marks = Application.WorksheetFunction.VLookup(student_id, myrange, 3, False)
To print the marks in a message box, let us use the following command:
MsgBox "Student with ID:" & student_id & " obtained " & marks & " marks"
It will return:
A student with ID:11004 obtained 85 marks.
Now, click the run button.
You will notice that a message box will appear in the Excel sheet.
VLookup Code in Excel VBA Example #2
Suppose you have the data on the names of employees and their salaries. The data is in columns B and C. Next, you must write a VBA VLOOKUP code, given the employee's name in cell F4. It will return the employee's salary in cell G4.
Let us write the VBA VLOOKUP code.
- Define the range in which the values are present, i.e., columns B and C.
Set myrange = Range (“B:C”)
- Define the employee's name and input the name from cell F4.
Set name = Range ("F4")
- Define salary as cell G4.
Set salary = Range (“G4”)
- Now, call the VLOOKUP function using WorksheetFunction in VBA and input it in salary.Value. It will return the value (output of the VLOOKUP function) in cell G4. We can use the following syntax:
salary.Value = Application.WorksheetFunction.VLookup(name, myrange, 2, False)
- Now, run the module. Cell G4 will contain the employee's salary after you run the VBA VLOOKUP code.
Suppose you change the value of cell F4 to "David" in the worksheet and re-run the code, which will return David's salary.
VLookup Code in Excel VBA Example #3
Suppose you have your company's employees' data, ID, names, Department, and salary. Using VLOOKUP in VBA, you want to get the salary details of an employee using his name and department.
Since the VLOOKUP function in Excel searches the lookup_value in only a single column, which is the first column of the table_array. It would help if you first made a column containing each employee's "Name" and "Department."
In VBA, let us insert the values “Name” and “Department” in column B of the worksheet.
To do this, go to the "Developer tab" and click "Visual Basic." Then, go to "Insert" and click on "Module" to start a new module.
Let us now write code such that column B contains the values of column D (name) and column E.
The syntax is:
Firstly, use a 'for' loop from i = 4 since the values start from the 4th row in this case. The loop will continue until the end of the last row of column C. So, we can use the variable as a row number inside the 'for' loop.
Then, enter the value to assign for Cell (row_number, column B), which we can give as Cells (i, "B").Value, as Cell (row_number, column D) & “_” & Cell (row_number, column E).
Suppose you want to assign the cell B5 = D5 & "_" & E5. Then, you can simply use the code as:
Cells(5, “B”).Value = Cells(5, “D”).Value & “_” & Cells(5, “E”).Value
Now, let's look for the lookup value in the array B5:E24. You need first to enter the lookup value. Let us take the value (Name and Department) from the user. To do this,
- Define three variables: name, department, and lookup_val as a string.
- Take the name input from the user. Use the code:
name = InputBox (“Enter the name of the employee”)
The content in the input box “Enter the ..” will be displayed in the prompt box when you run the code. The string entered in the prompt will be assigned to the name variable.
- Take the department from the user. We can do this similarly as above.
department = InputBox (“Enter the department of the employee”)
- Assign the name and department with “_” as a separator to the variable lookup_val using the following syntax:
lookup_val = name & "_" & department
- Write the VLOOKUP syntax to search for the lookup_val in range B5:E24 and return it in a variable salary.
Initialize the variable salary:
Dim salary As Long
Use the VLOOKUP function to find the lookup_val. We can give the table_array as Range("B:F"), and the salary is in the 5th column. We can thus use the following syntax:
salary = Application.WorksheetFunction.VLookup(lookup_val, Range ("B:F"), 5, False)
- To print the salary in a message box, use the syntax:
MsgBox (The salary of the employee is " & salary)
Now, run the code. A prompt box will appear in the worksheet where you can enter the name after you enter the name (Say "Sashi") and click "OK."
It will open another box in which you can enter the department. After you enter the department, say IT.
It will print the salary of the employee.
If VLOOKUP can't find any employee with the name and department, it will give an error. For example, suppose you give the name "Vishnu'' and the department "IT," it will return "Run-time error '1004'."
To address this issue, you can specify that on this type of error, print "Value not found" instead. To do this,
- Before using the vlookup syntax, use the following code:
On Error GoTo Message
Check:
The trailing code (of Check:) will be monitored, and if it receives an error, it will go to the “message” statement
- At the end of the code (Before End Sub), specify that if the error number is 1004, then print in the message box, "Employee data not present." One can do this using the syntax:
Message:
If Err.Number = 1004 Then
MsgBox ("Employee data not present")
End If
Module 1:
For i = 4 To Cells(Rows.Count, "C").End(xlUp).Row
Cells(i, "B").Value = Cells(i, "D").Value & "_" & Cells(i, "E").Value
Next iDim name As String
Dim department As String
Dim lookup_val As String
Dim salary As Longname = InputBox("Enter the name of the employee")
department = InputBox("Enter the department of the employee")
lookup_val = name & "_" & departmentOn Error GoTo Message
check:
salary = Application.WorksheetFunction.VLookup(lookup_val, Range ("B:F"), 5, False)
MsgBox ("The salary of the employee is " & salary)Message:
If Err.Number = 1004 Then
MsgBox ("Employee data not present")
End IfEnd Sub
Things to Remember About VLookup in Excel VBA
- The VLOOKUP function can be called in Excel VBA by using WorksheetFunction.
- The syntax of the VLOOKUP function remains the same in Excel VBA.
- When the VBA VLOOKUP code cannot find the lookup_value, it will give a "1004 error."
- We can manage the error in the VLOOKUP function using a GoTo statement if it returns an error.
Recommended Articles
This article has been a guide to VLOOKUP in VBA. Here, we discuss writing VLOOKUP code in Excel VBA, practical examples, and a downloadable Excel template. You may learn more about Excel from the following articles: -