search
HomeSoftware TutorialOffice SoftwareHow to Use the SWITCH Function in Excel

Excel's SWITCH function: efficient data processing tool

Excel's SWITCH function is a logical function, mainly used for data processing. It compares an expression with a series of values ​​and returns the result corresponding to the first matching value.

SWITCH functions are popular because they are simpler than other Excel functions that perform similar tasks, which means it is easier to read formulas and debug any problems.

This guide will explain how to use this function with a practical example, evaluate its advantages over other functions, and introduce some of its limitations.

Microsoft added the SWITCH function to Excel in 2016, so it was not available in earlier versions. If you try to use SWITCH in an incompatible version, Excel returns a #NAME? error.

SWITCH function syntax

Before demonstrating the practical application of the SWITCH function, let's take a look at its syntax:

<code>=SWITCH(e,v1,r1,v2,r2,d)</code>

Of:

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

Although only two v-r pairs (v1-r1 and v2-r2) are shown in the syntax here, you can use up to 126 pairs. Given that SWITCH returns the result corresponding to the first matching value, it is important to carefully consider the order of v-r pairs.

If you do not include optional d and no value (v#) matches the expression (e), Excel returns a #N/A error.

Practical application of SWITCH function

Let me show you the SWITCH function in a real scenario. In this table, I list the students and their grades and I need to determine their next steps based on these grades.

How to Use the SWITCH Function in Excel

I need to include all of this in the SWITCH formula since there are three different possibilities for grades (A, B, and C). So, in cell C2, I will type:

<code>=SWITCH([@Grade],"A","自动晋级到下一等级","B","继续保持当前等级","C","降级到上一等级","需要成绩")</code>

If any value or result in the SWITCH formula is not a number, it needs to be enclosed in quotes.

Although this looks complicated at first glance, it is actually very logical after decomposition:

  • First, I want Excel to evaluate the expression in the formatted table "Grade" column, which is why I use [@Grade] as the value e.
  • Then I have three v-r pairs: "A" will return "Automatically advance to next level", "B" will return "Continue to current level", and "C" will return "Downgrade to previous level" .
  • Finally, after the last pairing, I take "required grade" as the value d, and if no value (v#) matches the expression (e) then returns this result.

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

How to Use the SWITCH Function in Excel

Note that cell C8 contains "required grades" because the expression in cell B8 does not match any of the values ​​in my SWITCH formula.

If I want to change the output in column C, I will return to cell C2, modify the formula in formula bar, and press Enter. This change will be automatically applied to other cells in column C.

Why use SWITCH instead of IF, IFS or XLOOKUP?

You may be wondering why you are using SWITCH instead of other functions in Excel that do similar operations, such as IF, IFS, and XLOOKUP. Here are some reasons:

Avoid repeating expressions

To create the same result in the above table using IF or IFS, I have to repeat the expression every time:

<code>=SWITCH(e,v1,r1,v2,r2,d)</code>

However, using the SWITCH function, I only need to declare the expression once at the beginning of the formula:

<code>=SWITCH([@Grade],"A","自动晋级到下一等级","B","继续保持当前等级","C","降级到上一等级","需要成绩")</code>

Therefore, the SWITCH function is easier to read, less prone to input errors, and is easier to check if there is a problem.

Save everything in one place

Similar to SWITCH, the XLOOKUP function compares an expression with a series of values ​​and returns the corresponding value. However, with XLOOKUP, the list of values ​​is in a separate table, and SWITCH combines all of this into a single formula. This means you don't have any floating data, so your Excel spreadsheets stay neat.

A set of brackets

If I choose to use nested IF functions to achieve the same result in the above table, I will have to use a new set of brackets for each IF parameter:

<code>=IFS([@Grade]="A","自动晋级到下一等级",[@Grade]="B","继续保持当前等级",[@Grade]="C","降级到上一等级")</code>

As a result, the formula ends in confusion with three close brackets, and debugging any syntax problems will be more challenging. On the other hand, when used at its most basic level without other additional functions, SWITCH only requires a pair of brackets.

Disadvantages of SWITCH function

While SWITCH has many advantages, there are some limitations to keep in mind before starting to work on Excel spreadsheets:

  • You cannot use operators (for example) or approximate matching with standard SWITCH syntax. Instead, SWITCH is limited to exact matches.
  • If you have a lot of potential values ​​and results, it will take a long time to build the SWITCH formula first. Personally, I recommend using up to seven to eight values-result pairs in the SWITCH formula.
  • SWITCH is a relatively inflexible function. For example, XLOOKUP can return data for the entire row and column, not just a single value.
  • Because SWITCH requires a lot of commas (quotation marks are required if non-numeric values ​​are included), it is easy to go wrong if you type the formula manually.

SWITCH is just one of many different ways to use data in Excel tables. You can also consider using INDEX to find values, using MATCH to find bits of values, or combining INDEX and MATCH to create a bidirectional lookup.

The above is the detailed content of How to Use the SWITCH Function in Excel. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Excel CONCATENATE function to combine strings, cells, columnsExcel CONCATENATE function to combine strings, cells, columnsApr 30, 2025 am 10:23 AM

This article explores various methods for combining text strings, numbers, and dates in Excel using the CONCATENATE function and the "&" operator. We'll cover formulas for joining individual cells, columns, and ranges, offering solutio

Merge and combine cells in Excel without losing dataMerge and combine cells in Excel without losing dataApr 30, 2025 am 09:43 AM

This tutorial explores various methods for efficiently merging cells in Excel, focusing on techniques to retain data when combining cells in Excel 365, 2021, 2019, 2016, 2013, 2010, and earlier versions. Often, Excel users need to consolidate two or

Excel: Compare two columns for matches and differencesExcel: Compare two columns for matches and differencesApr 30, 2025 am 09:22 AM

This tutorial explores various methods for comparing two or more columns in Excel to identify matches and differences. We'll cover row-by-row comparisons, comparing multiple columns for row matches, finding matches and differences across lists, high

Rounding in Excel: ROUND, ROUNDUP, ROUNDDOWN, FLOOR, CEILING functionsRounding in Excel: ROUND, ROUNDUP, ROUNDDOWN, FLOOR, CEILING functionsApr 30, 2025 am 09:18 AM

This tutorial explores Excel's rounding functions: ROUND, ROUNDUP, ROUNDDOWN, FLOOR, CEILING, MROUND, and others. It demonstrates how to round decimal numbers to integers or a specific number of decimal places, extract fractional parts, round to the

Consolidate in Excel: Merge multiple sheets into oneConsolidate in Excel: Merge multiple sheets into oneApr 29, 2025 am 10:04 AM

This tutorial explores various methods for combining Excel sheets, catering to different needs: consolidating data, merging sheets via data copying, or merging spreadsheets based on key columns. Many Excel users face the challenge of merging multipl

Calculate moving average in Excel: formulas and chartsCalculate moving average in Excel: formulas and chartsApr 29, 2025 am 09:47 AM

This tutorial shows you how to quickly calculate simple moving averages in Excel, using functions to determine moving averages over the last N days, weeks, months, or years, and how to add a moving average trendline to your charts. Previous articles

How to calculate average in Excel: formula examplesHow to calculate average in Excel: formula examplesApr 29, 2025 am 09:38 AM

This tutorial demonstrates various methods for calculating averages in Excel, including formula-based and formula-free approaches, with options for rounding results. Microsoft Excel offers several functions for averaging numerical data, and this gui

How to calculate weighted average in Excel (SUM and SUMPRODUCT formulas)How to calculate weighted average in Excel (SUM and SUMPRODUCT formulas)Apr 29, 2025 am 09:32 AM

This tutorial shows you two simple ways to calculate weighted averages in Excel: using the SUM or SUMPRODUCT function. Previous articles covered basic Excel averaging functions. But what if some values are more important than others, impacting the f

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool