Hi Jordan. I am an Excel user like you.

How to add an imbedded IF function inside another IF function depends on what kind of conditions you have and what result you want. Here are two basic illustrations of how to put them together.

  1. =IF(A1="RED","Christmas",IF(A1="Green","Easter","None"))

In this formula the first Logical Test is A1="Red". The true result is "Christmas". So, if A1 does have "Red" the result will be "Christmas". The imbedded IF function is in the Value if False position. If A1 does not have "Red" the second IF function comes into play as the Value if False option and if A1 has "Green" then the result will be "Easter" as the true result of the second IF function. If A1 does not have "Green" then the result will be "None" as the False result of the second IF function.

  1. =IF(A1="Red",IF(B1="Green","Christmas","Valentine's"),"None")

In this formula the second IF function is in the Value if True position so if A1 has "Red" it will go on to the Value if True IF function to check if B1 has "Green". If this is true (we have met both Logical Tests now) then the result will be the true result of the second IF function "Christmas". If the Logical Test is false and B1 doesn't have "Green", then we have met the first test but not the second so the result will be the false result of the second IF function "Valentine's". If on the other hand the first Logical Test is false and A1 does not have "Red" then the formula will jump over the Value if True IF function and go to the Value if False part of the first IF function that is after the second, completed, imbedded IF function and the result will be "None".

Hopefully this will help on how these are constructed. If you need more specific information you will need to include some basic details about your data and layout. Be sure to remove sensitive information.

Answer from Rich~M on learn.microsoft.com
🌐
Microsoft Support
support.microsoft.com › en-us › office › if-function-nested-formulas-and-avoiding-pitfalls-0b22ff44-f149-44ba-aeb5-4ef99da241c8
IF function – nested formulas and avoiding pitfalls - Microsoft Support
It can be made much simpler with a single IFS function: =IFS(D2>89,"A",D2>79,"B",D2>69,"C",D2>59,"D",TRUE,"F") The IFS function is great because you don't need to worry about all of those IF statements and parentheses. Note: This feature is only available if you have a Microsoft 365 subscription. If you are a Microsoft 365subscriber, make sure you have the latest version of Office. Buy or try Microsoft 365 · You can always ask an expert in the Excel Tech Community or get support in Communities.
🌐
Ablebits
ablebits.com › ablebits blog › excel › if statement › excel if function with multiple conditions
Excel IF function with multiple conditions
March 22, 2023 - For the logical test, you use the following AND statement: AND(B2>50, C2>50) If both conditions are true, the formula will return "Pass"; if any condition is false - "Fail". ... In a similar manner, you can use the Excel IF function with multiple text conditions.
Discussions

Stringing Multiple IF functions together.
I am working on a large data set with multiple columns I want to reference to determine what a "Deficiency" would be. I am using IF functions and the first "part" of it works. I want to add another, similar condition and it will allow… More on learn.microsoft.com
🌐 learn.microsoft.com
5
0
Excel Nested IF statement with various text conditions - Stack Overflow
In previous time i used that way ... use two statement not work ... The logic for nested IFs remains the same in any language you use IF( condition1, value1, IF( condition2, value2)) ... Sign up to request clarification or add additional context in comments. ... don't show me the error message but when i use CIVIL or ARCHITECT or ELECTRIC text every time multiple I5 Cell by ... More on stackoverflow.com
🌐 stackoverflow.com
IF Then Formula with Multiple Outcomes
You're closing your brackets incorrectly. It's = IF(condition, true, false) so then is =IF(condition, true, IF(condition, true, IF(condition, true, false))) etc. =IF(AF3>=90.01, 5, IF(AF3>85.01, 4, IF(AF3>=80, 3 etc. IFS will be better here too: =IFS(AF3>=90.01, 5, AF3>85.01, 4, AF3>=80, 3, AF3>70, 2, AF3>1, 1) More on reddit.com
🌐 r/excel
13
13
March 27, 2023
Multiple IF Statement Returning Different Text
Hi Everyone, I am trying to write a formula that will look at a cell and if certain wording is not in the cell then return a value to a new cell. The information is from a multiple dropdown selection column. Here is an example of what i am trying to do. Dropdown List Would Populate the Missing ... More on community.smartsheet.com
🌐 community.smartsheet.com
November 19, 2023
🌐
Microsoft Support
support.microsoft.com › en-us › office › using-if-with-and-or-and-not-functions-in-excel-d895f58c-b36c-419e-b1f2-5c193a236d97
Using IF with AND, OR, and NOT functions in Excel - Microsoft Support
Use the IF function along with AND, OR and NOT to perform multiple evaluations if conditions are True or False. ... Here are overviews of how to structure AND, OR and NOT functions individually. When you combine each one of them with an IF statement, they read like this:
Top answer
1 of 5
3

Hi Jordan. I am an Excel user like you.

How to add an imbedded IF function inside another IF function depends on what kind of conditions you have and what result you want. Here are two basic illustrations of how to put them together.

  1. =IF(A1="RED","Christmas",IF(A1="Green","Easter","None"))

In this formula the first Logical Test is A1="Red". The true result is "Christmas". So, if A1 does have "Red" the result will be "Christmas". The imbedded IF function is in the Value if False position. If A1 does not have "Red" the second IF function comes into play as the Value if False option and if A1 has "Green" then the result will be "Easter" as the true result of the second IF function. If A1 does not have "Green" then the result will be "None" as the False result of the second IF function.

  1. =IF(A1="Red",IF(B1="Green","Christmas","Valentine's"),"None")

In this formula the second IF function is in the Value if True position so if A1 has "Red" it will go on to the Value if True IF function to check if B1 has "Green". If this is true (we have met both Logical Tests now) then the result will be the true result of the second IF function "Christmas". If the Logical Test is false and B1 doesn't have "Green", then we have met the first test but not the second so the result will be the false result of the second IF function "Valentine's". If on the other hand the first Logical Test is false and A1 does not have "Red" then the formula will jump over the Value if True IF function and go to the Value if False part of the first IF function that is after the second, completed, imbedded IF function and the result will be "None".

Hopefully this will help on how these are constructed. If you need more specific information you will need to include some basic details about your data and layout. Be sure to remove sensitive information.

2 of 5
2

Hi Jordan.

You could check out the SWITCH function that peiyezhu referred to, or I believe that the IFS function may be more applicable to your data. If I read your data correctly, you have unique conditions for each of the five results you want. With the IFS function you can enter each of those conditions followed by the result you want for that particular set of conditions.

Here is an example of how the formula works.

=IFNA(IFS(AND(A1=1,A2=2),"Blue",AND(A1=1,A2=3),"Green",AND(A1=1,A2=4),"Red"),"")

.

Inside the IFS function I have included three AND functions as the condition statements and three results, one for each of the condition statements. The first A1=1 and A2=2 is false so there is no result. The second A1=1 and A2=3 is true so the result that is matched with that statement is Green. This works best if each of the conditions is mutually exclusive from the others, but you can have them set in an order because Excel will stop at the first true result.

You can enter your AND, OR, or AND/OR statements in the Logical Test positions with the appropriate result following each. I also wrapped this in an IFNA function because if none of the conditions is found to be true the result will be #N/A. By using the IFNA function you can control what the result will be in that case. The formula is set to return a blank cell with the two quotation marks at the end of the formula. If you want it to say something else just enter that value inside those quotation marks at the end of the formula.

🌐
DataCamp
datacamp.com › tutorial › nested-if-excel
Nested IF() in Excel: A Quick Solution for Many Conditions | DataCamp
January 3, 2025 - Use nested if statements when dealing with complex decision-making tasks that require evaluating multiple conditions and returning different results based on these conditions. Yes, nested if statements can be combined with other functions like VLOOKUP or SUMIF to enhance functionality and provide more comprehensive data analysis. Common pitfalls include creating overly complex formulas that are difficult to read and debug. It's important to maintain clarity and organization when using nested if statements. Yes. In older versions (Excel 2003 and earlier), you can nest up to 7 levels of IF() functions.
Find elsewhere
🌐
Ablebits
ablebits.com › ablebits blog › excel › if statement › nested if in excel – formula with multiple conditions
Nested IF in Excel – formula with multiple conditions
October 17, 2023 - Use IF with logical functions OR / AND, as demonstrated in the these examples. Use an array formula like shown in this example. Combine multiple IF statements by using the CONCATENATE function or the concatenate operator (&).
🌐
Excel University
excel-university.com › home › blog › excel if function (and multiple conditions)
Excel IF Function (and multiple conditions) - Excel University
July 10, 2023 - Yes, you can write two conditions in an IF statement using the AND or OR function. You can also use nested IF functions or the IFS function to check multiple conditions.
🌐
WPS Office
wps.com › academy › how-to-use-multiple-if-statements-with-text-in-excel-quick-tutorials-1864779
How to Use Multiple If Statements With Text in Excel | WPS Office Academy
March 27, 2025 - In Excel, the maximum number of nested IF functions allowed is 64. This means you can nest up to 64 IF statements within a single formula.
🌐
Microsoft Support
support.microsoft.com › en-us › office › if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2
IF function - Microsoft Support
You can also nest multiple IF functions together in order to perform multiple comparisons. ... In the above example, the IF function in D2 is saying IF(C2 Is Greater Than B2, then return “Over Budget”, otherwise return “Within Budget”) ... In the above illustration, instead of returning a text result, we are going to return a mathematical calculation.
🌐
LinkedIn
linkedin.com › pulse › simplifying-data-analysis-mastering-excels-statements-multiple
Simplifying Data Analysis: Mastering Excel's IF Statements with Multiple Conditions
May 22, 2023 - Also, if you're creating a multiple IF statement with text and testing a value in one cell with the OR logic, you can build a more compact formula using an array constant in Excel.
🌐
Spreadsheet Planet
spreadsheetplanet.com › home › multiple if statements in excel (nested ifs, and/or) with examples
Multiple If Statements in Excel (Nested IFs, AND/OR) with Examples
November 28, 2023 - Learn how to use multiple IF statements in Excel with nested IFs, AND, and OR functions. Includes examples and alternatives to simplify complex formulas.
🌐
Reddit
reddit.com › r/excel › if then formula with multiple outcomes
r/excel on Reddit: IF Then Formula with Multiple Outcomes
March 27, 2023 -

Hello! I am trying to set up an IF formula where there are multiple outcomes. Specifcally, if it is above 90.01 then it gets a 5, above 85.01 then if will get a 4, etc.

I first tried it this way which is what I the tutorial I looked at had their formula set up like:

But I got the error message:

But it is my understanding you can have over 50 functions of this (according to the tutorial)

Then I tried it like this:

But got the #Value! error. I have tried closing off the formula in various ways but just can't make this formula work for me. Any tips would be greatly appreciated! :)

🌐
Smartsheet Community
community.smartsheet.com › home › get help › formulas and functions
Multiple IF Statement Returning Different Text - Smartsheet Community
November 19, 2023 - Hi Everyone, I am trying to write a formula that will look at a cell and if certain wording is not in the cell then return a value to a new cell. The information is from a multiple dropdown selection column. Here is an example of what i am trying to do. Dropdown List Would Populate the Missing ...
🌐
Wall Street Mojo
wallstreetmojo.com › home › all blogs › excel resources › multiple ifs in excel
Multiple IF Conditions In Excel - How To Use? (Easy Steps)
December 20, 2024 - The multiple IF conditions in Excel are IF statements contained within another IF statement. They are used to test multiple conditions simultaneously and return distinct values.
🌐
TechOnTheNet
techonthenet.com › excel › formulas › if_nested.php
MS Excel: How to use the Nested IF Functions (WS)
Question:In Excel, I need a formula ... you can write a nested IF statement that uses the AND function as follows: =IF((A1+B1)<=4,20,IF(AND((A1+B1)>4,(A1+B1)<=9),35,IF(AND((A1+B1)>9,(A1+B1)<=14),50,75)))...
🌐
WPS Office
wps.com › home › blog › excel resources › how to use excel multiple if statements (easy steps)
How To Use Excel Multiple IF Statements (Easy Steps)
October 16, 2025 - However, the IF-AND combination is a simple and effective approach that can be easily customized to suit your needs. ... In addition to evaluating numerical data, the IF-AND formula can also be used to check for multiple text ...
🌐
Ablebits
ablebits.com › ablebits blog › excel › if statement › excel nested if statements - examples, best practices and alternatives
Excel Nested IF statements - examples, best practices and alternatives
October 17, 2023 - To handle similar tasks in older Excel versions, you can combine two or more IF statements by using the Concatenate operator (&) or the CONCATENATE function. ... As you may have noticed, we multiply the result by 1 in both formulas.