Summary

IF you want to group or classify data based on arbitrary text values, you can use VLOOKUP instead of a long series of nested IF statements.

The trick is to build a custom table that will map values to all the groups you need.

In the example shown, the formula in F5 is:

=VLOOKUP(E5,key,2,0)

Generic formula

=VLOOKUP(value,table,column,0)

Explanation 

This formula uses the value in cell E5 for a lookup value, the named range "key" (H5:I9) for the lookup table, 2 to indicate "2nd column", and 0 as the last argument indicate exact match. You can also use FALSE instead of zero if you like.

VLOOKUP simply looks up the value and returns the group name from the 2nd column in the table. Both columns in the table can contain any values that you need, and the table doesn't need to be sorted since VLOOKUP is using exact match.

As always, if VLOOKUP can't find a match, it will return #N/A.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.