Why Do You Need Formulas and Functions?

If you are an office administrator, you probably use Excel. Ditto if you are a salesman. If you are a financial analyst, of course, you need Excel. For these and many other professions, working with spreadsheets is an essential tool in the daily routine.

Read More
Excel Data Entry Tips and Techniques

Simple Excel Tips and Tricks

Excel is software developed by Microsoft and is one of the most essential parts of Microsoft Office. It is a spreadsheet application capable of performing mathematical calculations, storing data in form of rows and columns and a lot of business applications.

Read More

How to quickly compare pricelists in excel

Today I am going to show you how to quickly compare two tables using conditional formatting. We are comparing two price lists from the year 2013 and year 2014. To make things more interesting, price list 2014 is not sorted. new products are also introduced. It is quite common that pricelists are huge and a total […]

Read More

Learn to Use INDEX MATCH MATCH

What INDEX MATCH MATCH offers you is a more powerful version of the formula. Instead of just a vertical lookup, INDEX MATCH MATCH allows you to perform a matrix lookup, which is also known as a two-way lookup

Read More

Learn to use HLookup in Excel

HLOOKUP is essentially the horizontal version of VLOOKUP. The primary reason for using HLOOKUP in Excel is for when you have key data points arranged horizontally across the top of your table. This usually happens when you are dealing with time series data; people have a tendency to list lookup values horizontally with this type of data.

Read More
Excel Count Functions

Excel Count Functions

Excel Count Functions Examples show how to count Excel cells with numbers, text, blanks, or cells that contain specific words or other criteria. Count Cells with Numbers — Excel COUNT The COUNT function will count cells that contain numbers. Its syntax is: =COUNT(value1, value2,…value30). The arguments (e.g. value1) can be cell references, or values typed […]

Read More

How to Use VLOOKUP MATCH

VLOOKUP MATCH is one of several possible lookup formulas within Microsoft Excel. This tutorial assumes you already have a decent understanding of how to use VLOOKUP. If you do not, please click here for a beginner’s tutorial on VLOOKUP.

Objective

VLOOKUP MATCH is an improved variation of your basic VLOOKUP or INDEX MATCH formula. Using VLOOKUP MATCH allows you to perform a matrix lookup – instead of just looking up a vertical value, the MATCH portion of the formula turns your column reference into a dynamic horizontal lookup as well. VLOOKUP MATCH is mainly useful for situations where you intended to perform heavy editing on your data set after you’ve finished writing your formula. This is because VLOOKUP MATCH gives your lookup formula insertion immunity; whenever you insert or delete a column within your lookup array, your formula will still pull the correct number.

The key difference between using VLOOKUP MATCH versus the basic VLOOKUP formula is that, in addition to your vertical lookup value (what you’ll be looking up down the left side of your table) you’ll also have a column lookup value (what you’ll be looking up across the top of your column headings).

The Syntax

VLOOKUP and MATCH are the two formulas that are combined to perform this lookup. We’ll look at each of the formulas separately before putting them together. The primary formula we’ll be using is VLOOKUP:

=VLOOKUP ( lookup value , table_array , col_index_num , [range_lookup] )

To use this formula, you’ll need a lookup value and a table array. (We’ll address the column index number later and since we are not performing a range lookup, we can leave that part of the syntax blank) In the example below, the lookup value is ID number “5” and the table array is the green box surrounding cells B6:F14.

Next we have the MATCH formula:

=MATCH ( lookup value , lookup_array , [match _type] )

The match formula returns a position number based on your lookup value’s location within the array you’ve selected. To use this formula you’ll need both a lookup value and a lookup array. (The match type parameter should be left blank – doing so tells Excel that we want an exact match). In the example below, the lookup value we’ll be using is the State of “WA” and the lookup array is the orange box surrounding cells B6:F6.

Putting it Together

The key to VLOOKUP MATCH is that we are replacing the “column index number” syntax of VLOOKUP with the MATCH formula. Perform this combination using the following steps:

Step 1: Start by typing your VLOOKUP formula as you normally would, inputting the proper lookup value and table array for your lookup; in this example the lookup value is ID number “5” and the table array is the green box surrounding cells B6:F14.

Step 2: When you get to the column index number input, instead of typing in a hard coded number, start typing in the MATCH formula

Step 3: For the MATCH formula’s lookup value, select the cell containing name of the column you want to return from; in this example we want to return a State, so we click on it

Step 4: For the MATCH formula’s lookup array, select the row headings of your table array; in this example it is the orange box surrounding cells B6:F6.

Step 5: Close off both your MATCH formula and your VLOOKUP formula with two parentheses (doing this simply confirms for Excel that we want an exact match for the MATCH formula and that we don’t want to use a range lookup for the VLOOKUP)

How it Works

The MATCH formula we created returns the value 4. Therefore, based on how we arranged the syntax, the VLOOKUP MATCH in this state is basically performing the same function as a VLOOKUP with a column index number of 4.

However, the key difference is that this column reference is now dynamic. If I insert or delete a column from my lookup table, my return value will stay the same. See below for an example of the difference in return values between VLOOKUP and VLOOKUP MATCH after inserting a column.

Read More
An alternative Excel averaging formula that doesn't evaluate zero

An alternative Excel averaging formula that doesn’t evaluate zero

Excel’s AVERAGE() function evaluates zero values. If you want to exclude zeroes, use these alternatives. Excel’s AVERAGE() function considers zero values in its calculations, which is probably what you’d expect, but not necessarily what you want. Over the years, I’ve seen many formulas that ignore zero value and most are more convoluted than they need […]

Read More
10 Top Excel Keyboard Shortcuts

10 Top Excel Keyboard Shortcuts

The problem with a list of hundreds of shortcut keys is that it is overwhelming. You cannot possibly absorb 233 new shortcut keys and start using them. The following sections cover some of my favorite shortcut keys. Try to incorporate one new shortcut key every week into your Excel routine. 1) Quickly move between worksheets […]

Read More