Battle of Heavyweights: Round 3

Welcome to Round 3. In this round, we want to explore the idea of column order. That is, we want to find out if the order of the lookup table columns matter to these functions. Let’s find out! Round 3 … begins now!

Round 3

We are trying to build a little report, and we begin by entering a few account numbers into some cells:

Now, we’ll use a formula to retrieve the amounts from our data table (Table1), shown below:

Interesting … the first column is the Amount, not the AcctNum. Will this matter? Let’s start with VLOOKUP.

VLOOKUP

We write the following formula into C8:

=VLOOKUP(B8, Table1, 1, 0)

We fill the formula down, and hmmm:

We get a bunch of errors. Why? After all, the second argument (Table1) defines the lookup table. And, the account number 5020 is in there!

Here’s the deal: when VLOOKUP is trying to find a matching value … it looks in the first column only. Once it finds a match, then it shoots to the right to retrieve the related value. But, while it is searching for the lookup value, it looks in the left-most column only (not the entire table).

So, column order does matter to VLOOKUP. What about SUMIFS? Let’s find out.

Note: column order doesn’t matter to XLOOKUP

SUMIFS

We write the following formula into D8:

=SUMIFS(Table1[Amount], Table1[AcctNum], B8)

We fill it down, and bam:

It works! Since we specify each column independently with SUMIFS, the column order does not matter.

Analysis

To recap what we’ve learned in this round:

Column order matters to VLOOKUP; not to SUMIFS

And, not only does the lookup column need to be the first column within the lookup range (table_array), the return column is expected to lie to the right of the lookup column. That is, VLOOKUP is designed to find a matching row and then shoot to the right to retrieve the related value.

So, if you encounter a similar workbook in practice, which function would you use? Me too … SUMIFS again!

For points, SUMIFS gets 10. And, what about VLOOKUP. Can VLOOKUP accomplish this task with a helper function? Technically, yes. Here is a post that shows a clever way to use the CHOOSE function. So, we’ll give 9 points to VLOOKUP.

Updated scoreboard …

Updated stats …

I’ll see you in the next round!

Sample file: Round3.xlsx

Posted in ,

Jeff Lenning

I love sharing the things I've learned about Excel, and I built Excel University to help me do that. My motto is: Learn Excel. Work Faster.

Excel is not what it used to be.

You need the Excel Proficiency Roadmap now. Includes 6 steps for a successful journey, 3 things to avoid, and weekly Excel tips.

Want to learn Excel?

Our training programs start at $29 and will help you learn Excel quickly.

1 Comment

  1. Arnstein Dragland on September 12, 2019 at 1:11 am

    Alternative solutions:

    VLOOKUP:
    =VLOOKUP($B8;CHOOSE({1\2};$C$17:$C$26;$B$17:$B$26);2;0)

    LOOKUP:
    =LOOKUP(2;1/($C$17:$C$26=$B8);$B$17:$B$26)

Leave a Comment