BlogHow to

How to Use the SWITCH Function in Excel

Excel’s SWITCH is a logical function that is primarily used for data manipulation. It evaluates an expression against a list of values, and returns a result corresponding to the first matching value.


Its popularity comes from its relative simplicity compared to other Excel functions that perform similar tasks, meaning it’s easier to read the formula and debug any issues.

In this guide, I’ll explain how to use the function with a real-world example, assess its benefits over other functions, and cover some of its limitations.


Microsoft added the SWITCH function to Excel in 2016, so it’s unavailable in earlier versions. If you try to use SWITCH in an incompatible version, Excel will return
the #NAME? error
.


The Syntax for SWITCH

Before I show you a real-life example of SWITCH in action, let’s look at the syntax:

=SWITCH(e,v1,r1,v2,r2,d)

where


  • e is the expression (the value that will be evaluated),
  • v1 is the first value to be compared against the expression,
  • r1 is the result that will be returned if v1 matches e,
  • v2 is the second value to be compared against the expression,
  • r2 is the result that will be returned if v2 matches e, and
  • d (optional) is the default value if e does not match any of the v values.

While there are only two vr pairings shown here in the syntax (v1r1 and v2r2), you can have up to 126 pairings overall. Given that SWITCH returns a result corresponding to the first matching value, it’s important to carefully consider the order of your vr pairings.

If you do not include the optional
d
, and none of the values (
v#
) matches the expression (
e
), Excel will return
the #N/A error
.

SWITCH in Action

Let me show you the SWITCH function in a real-world scenario. In this table, I have a list of students and their grades, and I need to work out their next steps based on those grades.


Since there are three different grade possibilities (A, B, and C), I need to incorporate all of these into the SWITCH formula. So, in cell C2, I will type

=SWITCH([@Grade],"A","Automatically advance to next level","B","Continue at this level","C","Move down to previous level","GRADE REQUIRED")

If any of the values or results in your SWITCH formula are not numerical, you need to surround them with quotes.

Although this looks complicated at first, when broken down, it’s actually quite logical:


  • First, I want Excel to evaluate the expressions in the Grade column of my formatted table, which is why I typed [@Grade] as value e.
  • Then, I have three vr pairings: “A” will return “Automatically advance to next level,” “B” will return “Continue at this level,” and “C” will return “Move down to previous level.”
  • Finally, after the final pairing, I have stated “GRADE REQUIRED” as value d, which is the result if none of the values (v#) matches the expression (e).

After pressing Enter, because my data is in a formatted Excel table, the rest of column C will populate automatically.

An Excel table containing student IDs, their grades, and a Next Step column completed using the SWITCH function.

Notice how cell C8 contains “GRADE REQUIRED,” because the expression in cell B8 did not match any of the values in my SWITCH formula.

If I wanted to change the outputs in column C, I would head back to cell C2, amend the formula in the formula bar, and press Enter. This change would then apply automatically to the other cells in column C.


Why Use SWITCH Instead of IF, IFS, or XLOOKUP?

You may be wondering why you would use SWITCH over some of Excel’s other functions that perform similar actions, such as IF, IFS, and XLOOKUP. Here are some reasons:

Avoid Repeating the Expression

To create the same results in the table above using IF or IFS, I would have to repeat the expression each time:

=IFS([@Grade]="A","Automatically advance to next level",[@Grade]="B","Continue at this level",[@Grade]="C","Move down to previous level")

With the SWITCH function, however, I only have to state the expression once at the start of the formula:

=SWITCH([@Grade],"A","Automatically advance to next level","B","Continue at this level","C","Move down to previous level","GRADE REQUIRED")

As a result, the SWITCH function is easier to read, less prone to typing errors, and easier to review if there’s an issue.

Keep Everything in One Place

Much like SWITCH, the XLOOKUP function compares an expression to a list of values, and returns a corresponding value. However, with XLOOKUP, the list of values is in a separate table, whereas SWITCH incorporates them all into one formula. This means that you don’t have any floating data, and so, your Excel spreadsheet stays tidy.


One Set of Parentheses

If I chose to use nested IF functions to achieve the same outcomes in the table above, I would have had to use a new set of parentheses for each IF argument:

=IF([@Grade]="A","Automatically advance to next level",IF([@Grade]="B","Continue at this level",IF([@Grade]="C","Move down to previous level","GRADE REQUIRED")))

As a result, the formula ends confusingly with three closing parentheses, and debugging any issues with the syntax would be more challenging. On the other hand, when used at its most basic level without any other additional functions, SWITCH requires only one pair of parentheses.

SWITCH Drawbacks

While SWITCH has many benefits, there are a few limitations to bear in mind before you get working on your Excel spreadsheet:


  • You can’t use operators (such as < or >) or approximate matches with the standard SWITCH syntax. Instead, SWITCH is limited to exact matching only.
  • If you have lots of potential values and results, constructing your SWITCH formula in the first instance will take forever. Personally, I would recommend using no more than seven or eight value-result pairings in your SWITCH formula.
  • SWITCH is a relatively inflexible function. For example, XLOOKUP can return entire rows and columns of data, rather than just a single value.
  • Because SWITCH requires lots of commas (and quotes if you’re including non-numerical values), it’s easy to make a mistake if you type the formula manually.


SWITCH is just one of the many different ways to use data in an Excel table. You might also consider using INDEX to find values, MATCH to find a value’s position, or INDEX and MATCH together to create a two-way lookup.


Source link

Related Articles

Back to top button
close