🌐
Google Support
support.google.com › docs › answer › 7014145
IFS function - Google Docs Editors Help
Evaluates multiple conditions and returns a value that corresponds to the first true condition. Sample Usage IFS(A1>90, "A", A1>80, "B", A1>70, "C") IFS({A1:A5} > 3, "bigger", {A1:A
Discussions

Nesting multiple ifs based on multiple criteria. - Google Docs Editors Community
Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on More on support.google.com
🌐 support.google.com
How can I combine an "IFS" and "AND" statement to check for to conditions?
The AND is a function. So =IFS(AND(E9=B2,F9), C2*B2) would work. If F9 is already a bool(TRUE/FALSE) no need to check if it is equal to TRUE. More on reddit.com
🌐 r/googlesheets
4
2
August 22, 2021
How do I include multiple conditions and outcomes in a google sheets formula
u/litany43 You could do something like below. The IFNA wrapped around it keeps it blank before you make a selection. FYI, this is based on your description of what you want, not the formula you put in your post. This would be intended to go into cell E2; assuming D2 is the dropdown containing the sizes (S,M,L). =IFNA(IFS(D2="S",4,D2="M",5,D2="L",6)) you could also create a pricing table that a lookup formula will reference instead of hard-coding the costs into the formula. FYI, your images didn't attach. Feel free to comment them if this doesn't work for you. More on reddit.com
🌐 r/googlesheets
13
1
January 23, 2025
if statement - Multiple IFS FUNCTION in Google Sheet - Stack Overflow
0 How to use multiple formulas to know if something matches and return a statement, but if it doesn't another formula runs · 0 How to rewrite the google sheet query formula to combine multiple sheets with custom column More on stackoverflow.com
🌐 stackoverflow.com
🌐
Owox
owox.com › blog › articles › google sheets tips › how to use the ifs function in google sheets for advanced conditional logic
Master Google Sheets IFS Function: Advanced Guide for 2025
May 14, 2026 - The IFS function in Google Sheets ... diverse range of users. It evaluates multiple conditions and returns the value associated with the first true condition encountered among the supplied logical tests....
🌐
Google Support
support.google.com › docs › thread › 248480021 › nesting-multiple-ifs-based-on-multiple-criteria
Nesting multiple ifs based on multiple criteria. - Google Docs Editors Community
Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on
🌐
Ben Collins
benlcollins.com › home › ifs function in google sheets
IFS Function in Google Sheets
June 20, 2024 - The IFS function in Google Sheets is used to test multiple conditions and outputs a value specified by the first test that evaluates to true.
🌐
Coefficient
coefficient.io › home
How to Use Multiple IF Statements in Google Sheets: A Step-by-Step Guide
September 2, 2025 - Get started by pulling live data into pre-built Sheets dashboards. ... Start with nested IF syntax: =IF(condition1, value_if_true1, IF(condition2, value_if_true2, value_if_false2)) ... Consider using the IFS function as a cleaner alternative: =IFS(condition1, result1, condition2, result2, …) ... Using multiple IF statements in Google Sheets is a game-changer for data analysis.
🌐
Medium
medium.com › @gaillereports › google-sheets-full-overview-of-if-ifs-and-and-or-formulas-2e7f61c6b8e9
Google Sheets - Full Overview of IF, IFS, AND and OR formulas | by Gala Ivannikova | Medium
April 25, 2025 - The IFS formula in Google Sheets is used to evaluate multiple conditions and return a value corresponding to the first condition that is true. It simplifies the process of writing nested IF statements, making your formulas easier to read and ...
🌐
The Bricks
thebricks.com › home › resources › how to use the if function in google sheets with multiple conditions
How to Use the IF Function in Google Sheets with Multiple Conditions
February 6, 2025 - This works because if the score isn't greater than or equal to 60, it must fall into the "F" category, and the `TRUE` acts as our final `else` statement. Sometimes your criteria aren't just a simple sequence along a single scale. You might need to check multiple conditions that all need to be true (`AND`) or where only one of several needs to be true (`OR`).
Find elsewhere
🌐
Coefficient
coefficient.io › home
How to Use the IFS Function in Google Sheets: A Step-by-Step Guide
July 24, 2024 - This could apply to finance for evaluating loan approvals, where multiple financial criteria need to be assessed to determine whether a loan application should pass or fail. =IFS(C1>750, “Pass”, C1>600, “Review”, C1>0, “Fail”) Here, ...
🌐
Spreadsheet Point
spreadsheetpoint.com › home › formula posts › ifs function in google sheets: easy guide
IFS Function in Google Sheets: Easy Guide for 2026 | SSP
December 27, 2022 - IFS function goes through the conditions one by one and stops when it finds the first TRUE condition. So you can have multiple conditions that return TRUE, but the function will only return the value for the first TRUE condition.
🌐
Gaille Reports
gaillereports.com › home › google sheets formulas: how to use if, ifs, and, or correctly
Google Sheets Formulas: How to Use IF, IFS, AND, OR
July 16, 2026 - The IFS formula in Google Sheets is used to evaluate multiple conditions and return a value corresponding to the first condition that is true. It simplifies the process of writing nested IF statements, making your formulas easier to read and ...
🌐
Spreadsheet Wise
spreadsheetwise.com › post › if-function-and-multiple-if-statements-in-google-sheets
IF Function and Multiple IF Statements in Google Sheets
April 12, 2026 - There is a more modern way to approach the multiple IF statement technique now using the IFS function to check for multiple criteria.
🌐
GeeksforGeeks
geeksforgeeks.org › google-sheets-ifs-function
How to Use the IFS Function in Google Sheets - GeeksforGeeks
September 30, 2025 - The IFS function eliminates the need for nested IF functions, making it easier to manage multiple conditions. For instance, if you need to test multiple eligibility criteria, you can use the IFS function instead of writing several IF statements.
🌐
Sheetgo
sheetgo.com › home › mastering the ifs formula: simplify conditional logic in google sheets
Mastering the IFs formula: simplify conditional logic in Google Sheets - Sheetgo
June 3, 2025 - Simplifies Logic: Eliminates the need for nested IF statements, making formulas easier to read and manage. Handles Multiple Conditions: Efficiently evaluates multiple criteria in a single formula.
🌐
Reddit
reddit.com › r/googlesheets › how can i combine an "ifs" and "and" statement to check for to conditions?
r/googlesheets on Reddit: How can I combine an "IFS" and "AND" statement to check for to conditions?
August 22, 2021 -

Hi I recently started using google sheets to make a travel plan budget cost. I was wondering if you could combine an IFS statement with an AND to test for two conditions (another cell and a checkbox). So basically it checks for a number on another cell and if a checkbox is checked. I want to check the conditions at the same time so it returns one value.

Ive tried to use the statement but it gives me a "formula parse error" (the F9 cell is a checkbox):

=IFS (E9=B2 AND F9=TRUE, C2*B2)

I've used other coding languages but I don't know if this is possible for google sheets. Does anyone have any suggestions or another operator I could use?

🌐
Sheets Bootcamp
sheetsbootcamp.com › home › if statements › google sheets if function: complete guide
Google Sheets IF Function: Complete Guide | Sheets Bootcamp
IF with AND / OR in Google Sheets: Test multiple conditions at once using AND (all must be true) or OR (any can be true) COUNTIF and COUNTIFS Guide: Count cells that match one or more conditions · SUMIF and SUMIFS Guide: Add up values that match specific criteria
Published: February 18, 2026
🌐
Reddit
reddit.com › r/googlesheets › how do i include multiple conditions and outcomes in a google sheets formula
r/googlesheets on Reddit: How do I include multiple conditions and outcomes in a google sheets formula
January 23, 2025 -

I'm trying to find a formula that will check the content of a cell, and give me different outcomes depending on what is written there (or chosen in a drop down list, if that's possible).

For context, I'm keeping inventory on items I sell, and I'd like if when I chose the size in a cell ("S", "M" or "L"), the next cell showing the price will automatically show the price corresponding to that size (in order, "4$" "5$" and "6$")

I've tried using "=IF", then "=IFS" functions, and even "=IF(or", but nothing works so far. I've triple-checked my syntaxe, but I'm new to this so maybe I missed something? Would there also be a simpler way that I'm missing?

In the image I'm using =IFS(D2<5;"S", IF(D2=5;"M", IF(D2>5;"L"))) and I tried replacing the semicolons by commas, still no go

Thanks!

EDIT:

Thanks to Squishiest-Grape for solving my problem (My Google Sheet was set to a language using comma number separators)! Everyone gave really good insight, I can now trouble-shoot my formulas much better!

🌐
Simular
simular.ai › workflow › how-to-master-google-sheets-multiple-if-formulas-guide
How to Master Google Sheets Multiple IF Formulas Guide
August 13, 2026 - You can write: IF(AND(B2 = "US", A2 > 80), "Hot", "Other") Or for multiple allowed countries, use OR inside AND. ... Test with rows where you know the expected outcome. Add a helper column explaining the rule in plain English.
🌐
OfficeWheel
officewheel.com › home › google sheets › how to use ifs function in google sheets with multiple conditions
How to Use IFS Function in Google Sheets with Multiple Conditions
August 16, 2023 - The IFS function in Google Sheets allows a user to test multiple conditions.This article talks about two practical example of it.