• Microsoft Office
  • Microsoft Windows
  • Other Software
    • Microsoft Visual
    • Microsoft Project
    • Microsoft Visio
  • Anti Virus
  • Blog
    • Word
    • Excel
    • Powerpoint
    • Software tricks/tips
  • POLICIES
    • PAYMENT GUIDE
    • SHIPPING POLICY
    • REFUND POLICY
    • TERMS & CONDITIONS
    • Contact Us

No products in the cart.

  • Microsoft Office
  • Microsoft Windows
  • Other Software
    • Microsoft Visual
    • Microsoft Project
    • Microsoft Visio
  • Anti Virus
  • Blog
    • Word
    • Excel
    • Powerpoint
    • Software tricks/tips
  • POLICIES
    • PAYMENT GUIDE
    • SHIPPING POLICY
    • REFUND POLICY
    • TERMS & CONDITIONS
    • Contact Us

No products in the cart.

  • Microsoft Office
  • Microsoft Windows
  • Other Software
    • Microsoft Visual
    • Microsoft Project
    • Microsoft Visio
  • Anti Virus
  • Blog
    • Word
    • Excel
    • Powerpoint
    • Software tricks/tips
  • POLICIES
    • PAYMENT GUIDE
    • SHIPPING POLICY
    • REFUND POLICY
    • TERMS & CONDITIONS
    • Contact Us

No products in the cart.

  • Microsoft Office
  • Microsoft Windows
  • Other Software
    • Microsoft Visual
    • Microsoft Project
    • Microsoft Visio
  • Anti Virus
  • Blog
    • Word
    • Excel
    • Powerpoint
    • Software tricks/tips
  • POLICIES
    • PAYMENT GUIDE
    • SHIPPING POLICY
    • REFUND POLICY
    • TERMS & CONDITIONS
    • Contact Us
Excel

What is the VLOOKUP function? What is the function of the VLOOKUP function?

0 Comments

The VLOOKUP function in Excel is a basic and essential tool for every Excel user. Therefore, in this article, Buffcom.net will help you understand what the VLOOKUP function is.

The VLOOKUP function in Excel is an extremely useful tool, so anyone who uses Excel wants to learn more about this function. Don’t worry because today, Buffcom will help you understand what the VLOOKUP function is and its function. Rest assured that learning to use this function is much easier than you think!

What is the VLOOKUP function?

Basically, VLOOKUP allows you to search for a specific piece of information in a worksheet. For example, if you have a list of products with prices, you can look up the price of a particular product in the list.

We will use the VLOOKUP function to find the price of the Photo frame product in the worksheet below. You may have already seen that its price is $9.99, but this is just a simple example. Once you have learned how to use VLOOKUP, you can apply it to much larger and more complex worksheets, and that’s when it will become really useful.

What is the VLOOKUP function? What is the function of the VLOOKUP function?

What is the VLOOKUP function? What is the function of the VLOOKUP function?

We will add the formula to cell F2, but you can add the formula to any empty cell. Any formula must start with an equal sign (=), then type the name of the formula. Our argument will need to be enclosed in parentheses, so we need to type a left parenthesis. Now it will look like this:

=VLOOKUP(
Add arguments
Now we will add our arguments. The arguments will tell VLOOKUP what to look for and where to look for it.

The first argument is the name of what you are looking for, in this case, Photo frame. Because the argument here is text, we need to enclose it in double quotes:

=VLOOKUP(“Photo frame”

The second argument is the range of cells containing the data. In this example, our data is in the range A2:B16. Just like other functions, you need to use commas to separate each argument:

=VLOOKUP(“Photo frame”, A2:B16

The important thing to know is that the VLOOKUP function will always search the first column in this data range. In this example, it will search for “Photo frame” in column A. The value returned (in this case, the price) will always need to be located to the right of that column.

The third argument is the column index number. This may sound complicated, but it’s not too bad: the first column in the data range is 1, the second column is 2, and so on. In this case, we need to find the price of the product, which is in column 2. This means our third argument is 2:

=VLOOKUP(“Photo frame”, A2:B16, 2, FALSE)

The fourth argument serves to ensure that VLOOKUP searches for an approximate match, and can be either TRUE or FALSE. If it is TRUE, it will search for an approximate match. Typically, this is only useful when the first column contains sorted numerical values. Since we are only looking for an exact match, the fourth argument should be FALSE. This is the last argument, so let’s close the parentheses:

=VLOOKUP(“Photo frame”, A2:B16, 2, FALSE)

That’s it! When you press Enter, it will return the result of 9.99.

What is the VLOOKUP function? What is the function of the VLOOKUP function?

What is the VLOOKUP function? What is the function of the VLOOKUP function?

How the VLOOKUP function works

Let’s take a look at how this formula works. First, it will search the first column in a straight line from top to bottom (VLOOKUP stands for Vertical lookup). When it finds “Photo frame,” it will move to the second column to find the price. As mentioned above, the price needs to be located to the right of the product name. VLOOKUP cannot find a value located to the left of the column it is searching.

What is the VLOOKUP function? What is the function of the VLOOKUP function?

What is the VLOOKUP function? What is the function of the VLOOKUP function?

If we want to find the price of a different product, we just need to change the first argument:

=VLOOKUP(“T-shirt”, A2:B16, 2, FALSE)

Or:

=VLOOKUP(“Gift basket”, A2:B16, 2, FALSE)

However, manually adjusting the VLOOKUP formula every time we want to find the price of a different product can be very tedious. In the next example, we will explain how to use a reference cell.

Another example

Are you ready to look at a slightly more advanced example? We’ll make some changes to the spreadsheet to make it look more realistic.

In the previous example, we typed the product name directly into the VLOOKUP formula. But in reality, you need to use a reference cell. In this example, we will type the product name into cell E2, and then our VLOOKUP formula can use the reference cell to find information about that product. Then, we just need to type a new product name into cell E2 to find any product we want.

We’ve also added a third column with the category of goods. Doing so will give us the option to search by price or product type. Now our spreadsheet will look like this:

What is the VLOOKUP function? What is the function of the VLOOKUP function?

What is the VLOOKUP function? What is the function of the VLOOKUP function?

Our formula will be similar to the previous example, but we will need to change the first three arguments. Let’s start by changing the first argument to a reference cell (make sure you delete the double quotes).

=VLOOKUP(E2, A2:B16, 2, FALSE)

To find the product category, we need to change the second and third arguments. First, we’ll change the data range to A2:C16 to include the third column. Next, we’ll change the column index number to 3 because our product category is in the third column:

=VLOOKUP(E2, A2:C16, 3, FALSE)

When you press Enter, you will see that the product Gift basket is located in the Gifts category.

What is the VLOOKUP function? What is the function of the VLOOKUP function?

What is the VLOOKUP function? What is the function of the VLOOKUP function?

If you want to find the category of a different product, just change the data in cell E2:

What is the VLOOKUP function? What is the function of the VLOOKUP function?

What is the VLOOKUP function? What is the function of the VLOOKUP function?

Now you know what the VLOOKUP function is and how to use it in different situations. If you have any questions or suggestions, please leave a comment below for Buffcom.net to know.

Rate this post
28
284 Views
How to Rotate a PDF File Quickly and Easily 2023PrevHow to Rotate a PDF File Quickly and Easily 2023March 6, 2023
The IF function in Excel – Basic knowledge you need to masterMarch 6, 2023The IF function in Excel – Basic knowledge you need to masterNext

Leave a Reply Cancel reply

You must be logged in to post a comment.

Buy Windows 11 Professional MS Products CD Key
Buy Office 2021 Professional Plus Key Global For 5 PC
Top rated products
  • Kaspersky Internet Security 2021 1 year 5 devices key Global Kaspersky Internet Security 2021 1 year 5 devices key Global
    Rated 5.00 out of 5
    $45.00
  • Windows Server 2022 Datacenter Key Global Windows Server 2022 Datacenter Key Global
    Rated 5.00 out of 5
    $7.00
  • Kaspersky Small Office Security 10 PCs + 10 Mobiles + 1 Server 1 Year Kaspersky Small Office Security 10 PCs + 10 Mobiles + 1 Server 1 Year
    Rated 5.00 out of 5
    $164.50
  • Avast Ultimate Suite 2021 1 Year 10 Devices Global Avast Ultimate Suite 2021 1 Year 10 Devices Global
    Rated 5.00 out of 5
    $54.00
  • Windows 11 Pro Key Global Windows 11 Pro Key Global
    Rated 5.00 out of 5
    $6.00
Products
  • Windows Server 2019 Essentials Key Global Windows Server 2019 Essentials Key Global
    Rated 4.71 out of 5
    $7.00
  • Microsoft Visio Professional 2021 Key 1PC Microsoft Visio Professional 2021 Key 1PC $13.00
  • AVG Ultimate 2021 with Antivirus + Cleaner, Secure VPN 10 Devices 1 Year AVG Ultimate 2021 with Antivirus + Cleaner, Secure VPN 10 Devices 1 Year
    Rated 4.91 out of 5
    $34.00
  • Windows Server 2019 Standard Key Global Windows Server 2019 Standard Key Global
    Rated 4.68 out of 5
    $7.00
  • Buy Office 2021 Professional Plus Key Global For 5 PC Buy Office 2021 Professional Plus Key Global For 5 PC
    Rated 5.00 out of 5
    $68.00
  • Windows 11 Pro Key Global Windows 11 Pro Key Global
    Rated 5.00 out of 5
    $6.00
  • Avast Ultimate Suite 2021 1 Year 10 Devices Global Avast Ultimate Suite 2021 1 Year 10 Devices Global
    Rated 5.00 out of 5
    $54.00
  • Windows Server 2008 R2 Standard Windows Server 2008 R2 Standard $10.00
  • Kaspersky Small Office Security 15 PCs + 15 Mobiles + 2 Servers 1 Year Kaspersky Small Office Security 15 PCs + 15 Mobiles + 2 Servers 1 Year
    Rated 5.00 out of 5
    $201.00
  • Kaspersky Small Office Security 20 PCs + 20 Mobiles + 2 Servers 1 Year Kaspersky Small Office Security 20 PCs + 20 Mobiles + 2 Servers 1 Year $284.73
Product categories
  • Anti Virus
  • Microsoft Office
  • Microsoft Project
  • Microsoft Visio
  • Microsoft Visual
  • Microsoft Windows
  • Other Software
  • Uncategorized

Buffcom.net always brings the best digital products and services to you. Specializing in Office Software and online marketing services

BIG SALE 50% IN MAY

Microsoft Office
Microsoft Windows
Anti-Virus
Contact Us

Visit Us:

125 Division St, New York, NY 10002, USA

Mail Us:

buffcom.net@gmail.com

TERMS & CONDITIONS | PAYMENT GUIDE  | SHIPPING POLICY  | REFUND POLICY

Copyright © 2019 buffcom.net  All Rights Reserved.