It's a little tricky because of the nested IFs but here is my answer (confirmed in Google Spreadsheets):

=IF(AND(A2>=0,    A2<500),  "Less than 500", 
 IF(AND(A2>=500,  A2<1000), "Between 500 and 1000", 
 IF(AND(A2>=1000, A2<1500), "Between 1000 and 1500", 
 IF(AND(A2>=1500, A2<2000), "Between 1500 and 2000", "Undefined"))))
Answer from eniacAvenger on Stack Overflow
🌐
Google Support
support.google.com › docs › thread › 96939950 › if-formula-between-two-numbers
IF Formula (Between Two Numbers) - 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
Discussions

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
How would I write this IF/THEN formula? Is it even an IF/THEN formula?
You would write an IFS formula when you have multiple IF/ELSE conditions like that.. In your case it could be something like below you will put in your C2 cell: =IFS(C1<6,A1,C1<11,B1,C1<16,C1,C1<21,D1,C1>=21,E1) The formula tests the conditions from left to write, so it will first check for condition one... if you have more values, you will also need to check for smaller values...else just the < will work. It it works, please mark solution as verified. Edit: If you need to just leave it blank if there is nothing, you can close the whole formula inside another if like below: =IFERROR(IFS(C1<6,A1,C1<11,B1,C1<16,C1,C1<21,D1,C1>=21,E1),"") That will take care of all conditions that don't satisfy the conditions inside the IFS formula and in case of an error, it will leave it BLANK (""). Edit 2: Fixed the formula for the last condition. Thanks u/giftopherz More on reddit.com
🌐 r/googlesheets
26
1
August 13, 2021
Conditional Numbers based on a Set Number Range using IFS functions
Use and/or functions between the IF condition, something like this: if (and(O8<40,O8>19), 1,....since the condition doesn't support a range. Hope thata makes sense, didn't write the whole formula as it is hard from the phone 😅 maybe tomorrow if you are still having issues More on reddit.com
🌐 r/googlesheets
4
2
October 31, 2022
If today falls between two dates, then return value in another cell?
Say your start date is in A1, end date in B1, and $ amount in C1, then: =IF(AND(A1<=TODAY(),B1>=TODAY()),C1,0) And drag down as needed. More on reddit.com
🌐 r/excel
11
49
January 14, 2020
People also ask

Does Coefficient work with both Google Sheets and Excel?
Yes, Coefficient supports both Google Sheets and Microsoft Excel. You can install Coefficient from the Google Workspace Marketplace for Sheets or from Microsoft AppSource for Excel.
🌐
coefficient.io
coefficient.io › home
How to Use the IFS Function in Google Sheets: A Step-by-Step Guide
What is Coefficient's AI Sheets Assistant?
AI Sheets Assistant is Coefficient's AI-powered feature that helps you build formulas, create charts, generate pivot tables, and build entire dashboards using natural language commands in Google Sheets. Unlike generic AI assistants, it's context-aware and creates native Google Sheets objects that are live and editable. It understands your spreadsheet's layout and data structure to provide accurate, actionable results.
🌐
coefficient.io
coefficient.io › home
How to Use the IFS Function in Google Sheets: A Step-by-Step Guide
Which business systems does Coefficient integrate with?
Coefficient integrates with 100+ systems across multiple categories: CRMs (Salesforce, HubSpot), databases (MySQL, PostgreSQL, Snowflake), accounting software (QuickBooks, Xero, NetSuite), BI systems (Looker, Tableau), marketing platforms (Google Analytics, Facebook Ads), payment systems (Stripe), ecommerce (Shopify), and more. Popular integrations include Salesforce, HubSpot, QuickBooks, Google Analytics, Snowflake, Airtable, and Notion.
🌐
coefficient.io
coefficient.io › home
How to Use the IFS Function in Google Sheets: A Step-by-Step Guide
🌐
Reddit
reddit.com › r/googlesheets › conditional numbers based on a set number range using ifs functions
r/googlesheets on Reddit: Conditional Numbers based on a Set Number Range using IFS functions
October 31, 2022 -

Okay, I'm not the best with google sheets, coding, or anything like that. If I'm explaining this issue poorly, I apologize. I'll try my best to express to explain what I'd like to do. Not to give my whole life story on this, but this is basically to help create a dynamic economy for a D&D campaign I'm running. The idea is that if I manually enter an input that affects the economy, it changes the economy all over the world to varying degrees, similar to a real economy.

Anyways, what I'm trying to do is write a function that if one set of numbers is between a range of numbers then it would spit out another number. So for example, y = 0.75 if x is greater than 40. y=1 if x is between 40 and 20. y = 1.25 if x is between 19 and 15. Hope this makes sense. As far as I am aware, I don't know how to express a number range in google sheets like this. I've tried a hyphen, it doesn't work. This is the current function I'm trying to use that doesn't work properly. =IFS(O8>40, 0.75, O8=40-19, 1, O8=19-15, 1.25, O8=14-10, 1.5, O8=9-4, 1.75, O8=4-1, 2)It expresses 0.75 and 1 correctly, but anything beyond that doesn't work. I'm guessing it's just seeing this as a regular IF statement, IF O8 is greater than 40, then 0.75, otherwise O8 is 1. Like I have inputs that are 9, which should be showing 1.75 and are instead showing 1.

Again, sorry if I'm expressing this poorly. Please let me know if I should use another function to do this. Perhaps there is an incredibly simple way to do this, that I'm missing. Any help would be greatly appreciated.

🌐
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
🌐
OfficeWheel
officewheel.com › home › google sheets › how to use ifs between two numbers in google sheets
How to Use IFS Between Two Numbers in Google Sheets
August 16, 2023 - The IFS function in Google Sheets helps to check multiple conditions at once, for example, it can be used to check if a value falls between two numbers and return a corresponding result.
🌐
Google Support
support.google.com › docs › answer › 10538337
ISBETWEEN - Google Docs Editors Help
Checks whether a provided number is between two other numbers either inclusively or exclusively. ISBETWEEN(value_to_compare, lower_value, upper_value, lower_value_is_inclusive, upper_value_is_inclusive) Short description of the example being shown below. Feel free to add more rows and columns ...
Find elsewhere
🌐
OfficeWheel
officewheel.com › home › google sheets › how to use if condition between two numbers in google sheets
How to Use IF Condition Between Two Numbers in Google Sheets
August 10, 2023 - Using the IF and AND functions together, we can determine which order will receive what kind of discounts. To create conditional arguments with numbers as values, we can use the IF function.
🌐
Ben Collins
benlcollins.com › home › ifs function in google sheets
IFS Function in Google Sheets
June 20, 2024 - Learn how to use the IFS function in Google Sheets to test multiple conditions more easily than with long nested IF formulas.
🌐
Coefficient
coefficient.io › home
How to Use the IFS Function in Google Sheets: A Step-by-Step Guide
July 24, 2024 - The IFS function in Google Sheets is a powerful tool for evaluating multiple conditions without needing nested IF statements. It simplifies the logical testing of expressions by returning a value that corresponds to the first TRUE condition. The IFS function takes an uneven number of arguments in pairs – a condition followed by a value.
🌐
FormulasHQ
formulashq.com › home › blog › what is the formula for if between in google sheets?
What is the formula for if between in Google Sheets? — FormulasHQ
October 9, 2024 - Google Sheets is a powerful tool that allows users to organize and analyze data. One of the most useful formulas in Google Sheets is the "IF Between" formula. This formula is particularly useful for performing calculations based on a specific range of values.
🌐
LiveFlow
liveflow.com › product-guides › isbetween-function-in-google-sheets
ISBETWEEN Function in Google Sheets: Explained | LiveFlow
The ISBETWEEN function in Google Sheets is a logical function that returns TRUE if a value is between two other values and FALSE if it is not. This function is helpful when you want to check whether a date is within a specific period or confirm ...
🌐
Productivity Spot
productivityspot.com › home › spreadsheets › learn ifs in google sheets in 5 minutes (2 easy examples)
Learn IFS in Google Sheets in 5 Minutes (2 Easy Examples)
April 19, 2023 - IFS is essentially nested if multiple conditions Google Sheets, so if you wish to use an alternate function, you can utilize the Google Sheets IF function. You can also use the CHOOSE and the VLOOKUP function, but all of these have pros and cons, so make sure to use the one that suits your needs. You can utilize IF and IFS frequently because they are helpful functions. Sheets IFS verifies more than one condition, whereas IF verifies just one. The IF function allows you to define what value to return if the condition is FALSE, which is the main distinction between it and the IFS function.
🌐
Softr
softr.io › google-sheets › formulas › isbetween › r › 6WfCE1vaZ76HKHpPQjfcjy
How to use Checks whether a provided number is between two other numbers either inclusively or exclusively. Learn more in Google Sheets - Guide
The Checks whether a provided number is between two other numbers either inclusively or exclusively. Learn more the isbetween function in google sheets checks whether a provided number is between two other numbers
🌐
Sheetgo
blog.sheetgo.com › home › how to use the ifs function in google sheets
How to use the IFS function in Google Sheets - Sheetgo
December 3, 2020 - The IF function in Google Sheets enables logical decision making with a simple if-else structure. It checks whether a condition in a cell is true or false.
🌐
Ablebits
ablebits.com › ablebits blog › google sheets tips › google sheets functions › google sheets if function – usage and formula examples
Google Sheets IF function – usage and formula examples
February 27, 2023 - This is where I found a dead end and google suggests =IF formula but clearly I am doing something wrong. ... If I understand your task correctly, I think you need XLOOKUP function. It will match the codes you enter on one sheet with the codes written in a row in another sheet, and will pull the corresponding numbers from the rows below. ... I'm looking for a simple formula to show me the difference in values between ...
🌐
Better Sheets
bettersheets.co › formulas › isbetween
ISBETWEEN Google Sheets Formula: Checks whether a provided number is between two...
... ISBETWEEN(value_to_compare, lower_value, upper_value, lower_value_is_inclusive, upper_value_is_inclusive) In cell D1, use the ISBETWEEN formula to check if the value in cell A1 is between 10 and 20 inclusively.
🌐
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 - Both IF and IFS are extremely useful functions and you would find yourself using these all the time. Google Sheets IFS checks multiple conditions while IF only checks one. The biggest difference between the IFS and the IF function is that with the IF function, you can specify what value to return in case the condition is FALSE.
🌐
Statology
statology.org › home › google sheets: use an if function with range of values
Google Sheets: Use an IF Function with Range of Values
December 28, 2022 - You can use the following formulas ... “Exists.” Otherwise it returns “Does Not Exist.” · Method 2: Create IF Function with Range of Numeric Values ......
🌐
W3Schools
w3schools.com › googlesheets › google_sheets_ifs.php
Google Sheets IFS Function
Fonts Font Color Font Size Font Characteristics GS Format Borders GS Format Numbers GS Format Grids GS Format Clear · GS Sort GS Sort Sheet GS Sort By Range GS Sort Range GS Conditional Formatting GS Single Color Formatting GS Color Scale Formatting · AND AVERAGE AVERAGEIF AVERAGEIFS COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS IF IFS MAX MEDIAN MIN MODE OR STDEV.P STDEV.S SUM SUMIF SUMIFS VLOOKUP XOR ... The IFS function is a premade function in Google Sheets, which returns values based on one or more true or false conditions.