Use the new Excel IFS function instead of nested IF

From this short tutorial you'll learn about the new IFS function and see how it simplifies writing nested IF in Excel. You'll also find its syntax and a couple of use cases with examples.

Nested IF in Excel is commonly used when you want to evaluate situations that have more than two possible outcomes. A command created by nested IF would resemble "IF(IF(IF()))". However this old method can be challenging and time consuming at times.

The Excel team has recently introduced the IFS function that is likely to become your new favorite one. Excel IFS function is available only in Excel 365, Excel 2021 and Excel 2019.

The Excel IFS function - description and syntax

The IFS function in Excel shows whether one or more conditions are observed and returns a value that meets the first TRUE condition. IFS is an alternative of Excel multiple IF statements and it is much easier to read in case of several conditions.

Here's how the function looks like:

IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2]…)

It has 2 required and 2 optional arguments.

  • logical_test1 is the required argument. It's the condition that evaluates to TRUE or FALSE.
  • value_if_true1 is the second required argument that shows the result to be returned if logical_test1 evaluates to TRUE. It can be empty, if necessary.
  • logical_test2…logical_test127 is an optional condition that evaluates to TRUE or FALSE.
  • value_if_true2…value_if_true127 is an optional argument for the result to be returned if logical_testN evaluates to TRUE. Each value_if_trueN relates to a condition logical_testN. It can also be empty.

Excel IFS lets you evaluate up to 127 different conditions. If a logical_test argument doesn't have certain value_if_true, the function displays the message "You've entered too few arguments for this function". If a logical_test argument is evaluated and corresponds to a value other than TRUE or FALSE, IFS in Excel returns the #VALUE! error. With no TRUE conditions found, it shows #N/A.

The IFS function vs. nested IF in Excel with use cases

The benefit of using the new Excel IFS is that you can enter a series of conditions in a single function. Each condition is followed by the result that will be used if the condition is true making it straightforward to write and read the formula.

Let's say you want to get the discount according to the number of licenses the user already has. Using the IFS function, it will be something like this:

=IFS(B2>50, 40, B2>40, 35, B2>30, 30, B2>20, 20, B2>10, 15, B2>5, 5, TRUE, 0)
The example of writing IFS function in Excel

Here's how it looks with nested IF in Excel:

=IF(B2>50, 40, IF(B2>40, 35, IF(B2>30, 30, IF(B2>20, 20, IF(B2>10, 15, IF(B2>5, 5, 0))))))
The example of writing nested IF function in Excel

The IFS function below is easier to write and update than its Excel multiple IF equivalent.

=IFS(A2>=1024 * 1024 * 1024, TEXT(A2/(1024 * 1024 * 1024), "0.0") & " GB", A2>=1024 * 1024, TEXT(A2/(1024 * 1024), "0.0") & " Mb", A2>=1024, TEXT(A2/1024, "0.0") & " Kb", TRUE, TEXT(A2, "0") & " bytes")
Conversion using IFS

=IF(A2>=1024 * 1024 * 1024, TEXT(A2/(1024 * 1024 * 1024), "0.0") & " GB", IF(A2>=1024 * 1024, TEXT(A2/(1024 * 1024), "0.0") & " Mb", IF(A2>=1024, TEXT(A2/1024, "0.0") & " Kb", TEXT(A2, "0") & " bytes")))
Conversion using nested IF

58 comments

  1. Am trying to find the best formula to spread a quantity (total sales) between 2 dates with a prorated value per year in between.
    I suppose I need a combinations of IFS. So far, I could only do this manually. But this would get extremely time-consuming if I had 200+ rows.
    My focus is which IFS formula can help me calculate the values from H9:M17 ?

    • Your task is not completely clear to me. Please clarify your specific problem or provide additional information to understand what you need. Provide me with an example of the source data and the expected result.

  2. I am trying to write the following formula:

    =IFS(J19="Monday",B15,J19="Tuesday",C15,J19="Wednesday",D15,J19="Thursday",E15,J19="Friday",F15)

    The formula works if I type the day in cell J19, but J19 contains a formula which returns the specific day, which the above formula does not seem to read?

  3. I am working on a nested IF statement that looks at a start date and end dates, compares it to a column date and places a letter in the cell if that cell falls between the dates. I have read that the IF statements are not able to determine dates? How can I fix this in my nested if statement?
    Currently I have 8 nested if statements that read IF(start date >= cell date, end date<=cell date,"L"), if not than blank""
    The formula is working, but it is not right. wondering if the dates are not being read correctly. Any advice?

  4. IFS(), as it is presently implemented in Excel, has a significant drawback. IFS(logical1,expr1,logical2,expr2,logical3,expr3,TRUE, default expr ) always evaluates all of the logicals and all of the expressions. The corresponding nested IF(logical1,expr1,IF(logical2,expr2,IF(logical3,expr3,default expr ) ) ) will always evaluate logical1, but will only evaluate expr1 when logical1 is true, and will only evaluate logical2, when logical 1 is false, etc.

    IFS() does not return errors from logical tests that would never be reached by the nested IF() form, and does not return errors from expressions that would never be evaluated by the nested IF() form.

    IFS() will perform time consuming operations like table lookups and data queries that would never be reached by the nested IF() form.
    IFS() will return #NA when none of the logical expressions was true. When logical1, logical2, and logical3 are all false.,
    IFS(logical1,expr1,logical2,expr2,logical3,expr3) returns #NA
    IF(logical1,expr1,IF(logical2,expr2,IF(logical3,expr3) ) ) returns FALSE

    I'm sure the rational for choosing the present implementation was along the lines of "it corresponds to evaluating a vector expression", or "it corresponds to modern CPU architectures that perform speculative execution", "it allows for parallel execution on multiple cores". That these rationales also consume more CPU cycles and drive new hardware purchases that require a new OS license and a new Office license is an example of (un) natural selection. None of the rationales is valid. Speculative evaluation of nested IF() functions could also be scheduled on multiple cores for parallel execution.

    Until Microsoft rewrites the IFS() function, using ctrl-enter to write

    =IF(logical1,expr1,
    IF(logical2,expr2,
    IF(logical3,expr3,
    default )))

    has enough advantages over

    =IFS(logical1,expr1,
    logical2,expr2,
    logical3,expr3,
    TRUE. default )

    to continue using nested IF() instead of IFS()

    • THANK YOU FOR THIS COMMENT!

      I have been losing my mind trying to figure out why my IFS functions are evaluating all the conditions when nested IFS do not. This is an incredible oversight and has major performance issues for people with large or complex tables/worksheets (my particular case uses UDFs with nested IFS for error handling).

      It really boggles the mind why they would make IFS function without the short-circuit ability built into the IF statement.

  5. I have a file with multiple tabs. I need to have information read from one tab to a roll up tab. The one tab has a question that can be answered YES, NO or N/A. The questions are answered by an X in the appropriate column. I need the answer to read to the roll up sheet as Yes or No or N/A depending on where the X was placed on the question in the tab.

    Tab 1
    Question Audits completed Yes No N/A
    X

    Roll up
    Audits Completed Yes

  6. Which formula need to used for calculating the commission for different seller vendor with different Rate complexity e.g.
    Vendor list....
    Vendor Name Sell Commission
    A 2000
    B 5000
    C 10000
    D 6000

    Vendor
    Name Percentage Flat Rate in Rs.
    A 10% OR 500 Whichever is low
    B 5%
    C 400
    D 15% 200 Whichever is low

      • My query is how to calculate the commission on sale with provided commission table.

        • If I understand correctly, you have a separate commission for each vendor. Write down 4 formulas.
          MIN(A1*10%, 500)
          A2*5%. ....
          etc.

          • Hi Alexander,

            Need one single formula by which I can calculate all categories vendor transaction commission.

            Thank you for your support.

            Regards,
            Datta

  7. Trying to get this IFS statement to work. Seems simple enough but I seem to be missing something. I can get the result for the first statement or the third statement but not the second statement Middle). =IFS(K33L33,2,K33>L33,3)

    • =IFS(L33<K33,3,"L33+5"K33,1)

  8. Hello,

    I'm trying to get the following formula to work but this message keeps showing: "You've entered too few arguments for this function."

    The formula in question: *the excel software is programmed to be in french so SI.CONDITIONS translates to IFS*

    =SI.CONDITIONS(C20="Anglais 1"; 134-104; C20="Anglais 2"; 134-204; C20="Anglais 3"; 134-304; C20="Anglais 4"; 134-404; C20="Anglais 5"; 134-504; C20="Arts Plastiques 4"; 168-402; C20="Arts Plastiques 5"; 168-502; C20="Chimie 5"; 051-504; C20="Éducation Financière"; 102-522; C20="Espagnol"; 141-514;"0")

    I know in this article, it states that if that specific message appears it is because I never put a value_if_true. But I think I did, but now I'm not too sure. Is it because my values have a dash ?

    Please someone help me haha

      • Hello,

        I tried using the double quotes as you suggested and the same message keeps appearing. Should I consider doing another formula ?

        • IT WORKED !! I'm so happy haha Turns out that I had to eliminate the "0" value at the end and replace it with the end of my parenthesis. Thank you so much for your help !!

  9. Hi, I want to build a couple of formulas for current and previous month scores based on a table of data. Basically, if today's date is in the month of x (shown in column A), then display a specific score from column B.

    In A2:A13, I have the names of the month's of the year.
    In B2:B13, I have scores that are totals for that given month.

    In D1, I want to display the current month's score based on today's date.
    In D2, I want to display the previous month's score based on today's date.

    I know it involved an IFS statement using TODAY(), and the appropriate cell in column B not being blank, and I'm at a loss on how to put it all together.

    • Hello!
      If I understand your task correctly, the following formula should work for you:

      =SUMIF(A2:A13,TEXT(TODAY(),"mmmm"),B2:B13)

      Hope this is what you need.

      • Thanks Alexander, very close.

        I'm looking to show the specific score for the corresponding month, not the sum of the scores.

        So if A11's value is October, and Todays date is October 31st, show the value in B11

        • Hello!
          Have you tried using a formula? If your data contains only one cell "October", then you will get the score for October.
          You can also use the VLOOKUP function to find the value:

          =VLOOKUP(TEXT(TODAY(),"mmmm"),A2:B13,2,FALSE)

  10. Hi, I hope you can help me. I am looking for a formula that will calculate the date range between cells, (NETWORKDAYS, no holidays), where the cells used in the date range will depend if the are populated.

    The calculation needs to consider the following:

    C1 is the end date, and the start date is either B1 or A1.

    B1 is the first start date to look at. If B1 is populated, then calculate the "networkdays" between B1 & C1.

    If B1 is blank, then calculate the "networkdays" between A1 & C1.

    If C1 is blank, the cell should be blank, even if A1 and B1 are populated.

    This is what I have, and it works until C1 is blank:

    =IF(B1="",NETWORKDAYS(A1,C1),NETWORKDAYS(B1,C1)))

    • Hello!
      If I understand correctly, add another nested condition to the IF formula:

      =IF(C1<>"",IF(B1="",NETWORKDAYS(A1,C1),NETWORKDAYS(B1,C1)),"")

      • Thank you very much, Alexander, it works (with the addition one an extra closed parenthesis).

  11. Hi, I'm trying to write formula that will return "BH" if cell contains "Brighton" and "LDN" if cell contains "London".
    It woks only for cells wit "Brighton", but not cells with London and I'm getting #VALUE! error.

    =IFS(SEARCH("Brighton",C48691),"BH",SEARCH("London",C48691),"LDN")

    Thank you.
    Aga

      • Thank you. I tried your formula, but now I'm getting #N/A error in both cases

          • Hi!

            I didn't notice it. Thank you very much for your help. That's great.

  12. So the error was I didn't properly research how to formulate looking for "TRUE" statements. The "TRUE" in the formulas need to be without quotes.

  13. Hello all,

    I have a very long IFS() statement that I'm trying to get to work for a personal project to randomly generate a first name given three different criteria (all three of which are also randomly generated).

    It's always returns the #N/A error, which I know is because it finds no "TRUE" statements. I've confirmed this by looking at both "Show Calculation Steps" and "Evaluate Formula" which shows the formula is properly randomly generating a name from each column. But they are all preceded by "FALSE," telling me that it's not recognizing any of the randomly generated criteria in the first place.

    Here is an example of the recurring arguments I've put in to account for every outcome:
    IFS(...,AND(AA22="Roman",X22="*",Z22="Female")="TRUE",VLOOKUP(RANDBETWEEN(1,50),RaceFirstName[#All],53),...)
    AA=First Name's Origin [=VLOOKUP(RANDBETWEEN(1,100),RaceFirstName[#All],3)]
    X=Race [=VLOOKUP(RANDBETWEEN(1,100),RaceFirstName[#All],2)]
    Z=Gender [=VLOOKUP(RANDBETWEEN(1,2),Gender[#All],2)]
    The VLOOKUP is looking at a large table and randomly selecting a name from there.

    I've gone through the "RaceFirstName" and "Gender" tables to make sure there was no space at the end or beginning (as that's an issue I've found to be common).

    The only three issues I can think of is
    1. that the colums X, Z, and AA are still viewed as formulas and not values by the IFS() statement.
    2. that the order of the references need to be X, Z, AA and not as they are now (currently not in that order)
    3. that the formula itself has too many conditions (it has about 60 conditions, but maybe due to the AND statements, it's too much for it to want to calculate)

    Any help or insight would be most welcome. Hopefully I was clear enough.

    Thank you so much for taking the time to read this.

  14. Thank you for taking the time to read this.

    I would like to use IF to update a value in another field (that currently has a value). I am not sure how to enter just the current time.
    =if(c2="x",b1=Now)

    Ideally, someone makes c2 = x and then this happens. I don't know how to run a formula in the current field without overwriting the formula.

    Thanks

    • Hello!
      If a value is written in a cell, then it is impossible to change it using a standard Excel formula. You need to use a VBA macro.

  15. I'm trying to write a formula that will analyze whether win, lose or tie a golf whole. I needs to consider the difference in player handicaps (me 2, competitor 11), the rating of the hole (7) and the 2 scores made on the whole (me 4, him 5), then return a -1 for a loss, a 0 for a tie or a +1 for a win. Example, I have to give my opponent 9 strokes, the distribution of which is determined by the rating of each hole. Hole 1 is rated #7 so he gets a stroke there. If I score 4 and he scores 5, we tie because 5-1 = 4. If I make 4 and he makes 6, I win because 6-1=5 which is higher than 4. If we both score 4, he wins because his 4-1 beats my 4. How can I do this?

  16. Hi, I need Excel function for Calculating a certain % of Discount basis number of days from a date:
    If Cut off Date is Greater than the Month indicated then 0%; If cut off date is Lower than the month indicated then return Value as per discount.
    Cut off Date 1Apr 1May 1Jun 1Jul 1Aug 1Sep 1Oct 1Nov 1Dec 1Jan 1Feb 1Mar
    A - 1st Feb 2020
    B - 15th March 2020
    C - 1st September 2020
    D - 15th October 2020

    • Hello!
      If I understand your task correctly, use something like this

      =IFS(A1>DATE(2021,3,1),1,A1>DATE(2021,1,1),2,A1>DATE(2020,12,1),3,A1>DATE(2020,11,1),4,A1>DATE(2020,10,1),5)

      In the first condition, use the farthest date.

  17. Salab Calls form-To Incentive per calls
    Slab1 1841-2084 2.50₹
    Slab2 2025-2116 3.50₹
    Slab3 2117-2207 4.50₹
    Slab4 2208-2300 5.50₹
    Slab5 2301-Above 10₹ how to calculate in total rupees by Excel formula.

  18. Every 2 weeks a payment is made and entered, the beginning amount of payment are decreased by 1 every second Thursday. During the off weeks an extra payment can be made and is entered in a separate Col. Col 3. When the extra payment is made i would like the reflection of that payment shown in Col 2 by subtracting from the number of payments remaining and not effecting the bi-weekly payment / remaining payments.

    Payments remaining = 110

    Col. 1 has a payment of $200.00
    Col. 2 has 109 (number of payments remaining)
    with an IF statement,

    -if(col. 1>0,payments remaining-1,"")

    Note that each payment made the IF statement changes from Payments remaining-1 to Col. 2 (previous cell number) -1 so it would be

    -if(col. 1>0,Previous cell-1,"") Previous cell being 109

    In addition to this there is another Col, Col. 3 for EXTRA payments where, when entered on a row with no other payments entered, i would like THAT payment reflected in the payments remaining total.

    If you want the spreadsheet let me know .... can email it to you

    Thanks
    Cat

  19. Hi everybody...
    I have problem related, I think, to using IF function or IFS.
    I have a Pivot filter including 3 options, means I can select 1 or All or Multiple product categories. I am using SUMIFS to extract the data from Excel table, and filter using Pivot filter. all working fine until I select 2 product categories, I eliminate the problem when selecting (ALL), but could not do that when I select 2 product categories, the result was all zero values. here is my function:

    =SUMIFS(SalesData[revenue];SalesData[year];I$4;SalesData[region];$H5;SalesData[Category];IF($I$2="(All)";"*";$I$2))

    my attempt was nested IF:
    IF($I$2="(All)";"*";IF($I$2="(Multiple Items)";$I$2))
    but it dose not work, any help...

  20. with nested IF(), latter redundant calculations are ignored (not calculated)

    =IF(1=1,"Answer","this bit could be processor heavy but is ignored")

    but using the 'evaluate formula' it would appear that IFS() works out all the bits of the formula, even if the first condition is met and therefore is redundant

    =IFS(1=1,"answer", other condition IS verified, redundant terms all calculated)

    Is this the case?

    essentially, IFS does indeed look simpler to untangle, BUT is it actually getting excel to do a less efficient amount of calculating?

    • Hello, Mike,

      We haven’t investigated the efficiency of the IF() and IFS() functions in all configurations.
      Most likely, they work in the same way. For example, if you create two formulas like the ones below:
      =IF(1=1,"1",IF("=1","2"))
      =IFS(1=1,"1", "=1", "2")
      They return the same result equal to «1».
      But following your hypothesis, the =IFS(1=1,"1", "=1", "2") formula should have returned a #VALUE! error as the second condition in the formulas is wrong.

    • Mike you are correct. It appears as though IFS is horribly inefficient compared to traditional nested IFS statements. Much easier to write but you end up sitting around longer waiting on calculations to finish.

  21. hi
    why in my excel(2010 version) "IFS" function does not work??
    what should I do??

    • Google pwrIFS as an option.

  22. =IF(AND(C3:BA3=0), "DISTRICT LEADER",IF(AND(C3>=15, D3>=5),"DIVISONAL LEADER",IF(AND(C3>=15, D3>=5,E3>=5,F3>=3,G3>=15,H3>=75,C3>=15,D3>5, I3>=45),"REGIONAL LEADER",IF(AND(C3>=15,D3>=5,E3>=5,F3>=3,G3>=15,H3>=75,I3>=45,K3>=3,L3>=3,M3>=5,N3>=15,O3>=45,P3>=45,Q3>=75),"SENIOR REGIONAL LEADER ",IF(OR(C3>=15,D3>=5,E3>=5,F3>=3,G3>=15,H3>=75,I3>=45,K3>=3,L3>=3,M3>=5,N3>=15,O3>=45,P3>=45,Q3>=75,S3>=4,T3>=3,U3>=3,V3>=5,W3>=15,X3>=60,Y3>=45,Z3>=45,AA3>=75), "REGIONAL MANAGER", IF(AND(C3>=15,D3>=5,E3>=5,F3>=3,G3>=15,H3>=75,I3>=45,K3>=3,L3>=3,M3>=5,N3>=15,O3>=45,P3>=45,Q3>=75,S3>=4,T3>=3,U3>=3,V3>=5,W3>=15,X3>=60,Y3>=45,Z3>=45,AA3>=75,AC3>=5,AD3>=4,AE3>=3,AF3>=3,AG3>=5,AH3>=15,AI3>=75,AJ3>=60,AK3=45,AL3>=45,AM3>=75), "SNR. REG. MANAGER", IF(AND(C3>=15,D3>=5,E3>=5,F3>=3,G3>=15,H3>=75,I3>=45,K3>=3,L3>=3,M3>=5,N3>=15,O3>=45,P3>=45,Q3>=75,S3>=4,T3>=3,U3>=3,V3>=5,W3>=15,X3>=60,Y3>=45,Z3>=45,AA3>=75,AC3>=5,AD3>=4,AE3>=3,AF3>=3,AG3>=5,AH3>=15,AI3>=75,AJ3>=60,AK3=45,AL3>=45,AM3>=75,AO3>=6,AP3>=4,AQ3>=3,AR3>=3,AS3>=5,AT3>=15,AU3>=90,AV3>=75,AW3>=60,AX3>=45,AY3>=45,AZ3>=45,BA3>=75),"RVP", "SEN. REG. MANAGER")))))))

  23. Hi Faye,

    You need to add the additional column in your table and use the following formula to increase the price by 5%:
    =D1*1.05
    Then please copy the added column and use the Paste Special - Values option to replace the values in Column D.

  24. I need excel function to calculate and update old selling price of same product number located in different rows in same column
    example:

    Product#1001-099
    Old Price = $20.00
    New Price should be increased by 5%

    Product is in Column A
    Selling Price is Column D

    How do I increase and replace the old Selling Price
    for this product that is in Column A,
    Row 8, Row 101, Row228?

    Thank you for your assistance

    • self-reply: same issue affects all three URL in the "You may also be interested" section.

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)