
Master vlookup in Excel by matching product keys to a lookup table to retrieve prices from the third column, using exact match with false.
Master VLOOKUP across tabs by identifying the lookup value, selecting the table array on another sheet, and using absolute references (F4) to keep the range fixed, with exact-match results.
Master vlookup with approximate match by setting the fourth parameter to true, determining the next lowest data bracket, and applying it to commission calculations.
Discover how hlookup works for data spread out horizontally, complementing vlookup, and perform exact-match lookups using a horizontal lookup table.
Translate vlookup concepts into sql by querying an item_data table and retrieving prices for item_codes using a where in clause.
Explore how vlookup returns #N/A when data is missing and why lookup keys or data may be wrong. Convert numbers stored as text to numbers to ensure correct matches.
Master how vlookup retrieves values only to the right of the lookup key, requiring the key to be the first column and preventing extraction from left-side columns.
Learn to perform wildcard searches in VLOOKUP by appending an ampersand and star to the item, enabling matches by partial descriptions and first-match behavior and duplicates.
Learn how to use named ranges to simplify vlookup in Excel and Google Sheets, lock lookup ranges with F4, and retrieve exact-match results like descriptions and prices.
Learn how vlookup retrieves prices by cross-referencing a lookup value with a range, using exact matches with false, and exploring across sheets, hlookup, wild card search, and named ranges.
VLOOKUP is probably the most used function in excel. This course does just one thing - Demystify how VLOOKUP works in excel. We cover the following aspects of VLOOKUP.
Why use VLOOKUP
VLOOKUP is used to cross-reference data. There are many situations where data in one sheet or tab needs to be cross referenced to extract values out of it. For example, say we have 1000 students data in a sheet. We want to find out the grades of 100 students among them. Other than doing this manually, what else can we do ? VLOOKUP is a way to automate this function so that we can extract all the information in one go , automatically using a simple formula.
How VLOOKUP works
There is a specific way in which VLOOKUP works. The parameters used in VLOOKUP are confusing initially. This course will make you understand the formula along with the parameters with simple examples and with simple data sets.
Approximate vs Exact Match
Sometimes you need to match ranges instead of exact numbers. For example, in the same students data, how would you match grades (like A or B) to absolute numbers ? That's when approximate match comes in. We will see how to do approximate matches with sales commission numbers.
HLOOKUP
VLOOKUP stands for Vertical LOOKUP. Although, this is the most used function, Excel also provides functionality to lookup horizontally. Data typically doesn't tend to this kind of lookup in real life, but nevertheless, we will cover HLOOKUP.
SQL Equivalent of VLOOKUP
If you understand SQL, we will look at how VLOOKUP is an equivalent of a particular version of SELECT statement that you will be aware of in SQL. If you have no knowledge of SQL, you can ignore this part.
Commonly occurring problems.
#N/A error
Number as Text
VLOOKUP works left to right only
Lookup is case insensitive
Named Ranges
If you use a particular excel sheet a lot repetitively, using named ranges can be very helpful. We will explore how named ranges can be created and used in VLOOKUP. This makes formulas look less ugly.
VLOOKUP in Google Sheets
VLOOKUP functionality is provided in Google sheets as well. In this quick chapter,we will look at how to use VLOOKUP in google sheets.