Microsoft Office Forums

Microsoft Office Forums (https://www.msofficeforums.com/)
-   Excel (https://www.msofficeforums.com/excel/)
-   -   IFS formula (https://www.msofficeforums.com/excel/49495-ifs-formula.html)

Kim Yoona 08-12-2022 11:46 AM

IFS formula
 
1 Attachment(s)
Hi. I've got to calculate multiple If on a formula, but I don't know what is wrong with my formula. Tks for answer.

joeu2004 08-12-2022 11:51 PM

Quote:

Originally Posted by Kim Yoona (Post 169731)
I don't know what is wrong with my formula.


Neither do we, because you did not explain what it is that you perceive to be "wrong".


Perhaps it is: your formula only returns 400 or "fără bursă". Your formula is:


=IFS(Q26>=8.5,400,Q26>=9,500,Q26>=9.5,600,Q26=10,1 000,Q26<=8.49,"fără bursă")


With Q26 = 9.03125, presumably you expect 500, not 400.


But when Q26>=9 is true, Q26>=8.5 is also true. And since IFS stops with the first true condition left-to-right, Q26>=8.5 will "win", and IFS will return 400.


You should re-order your conditions, to wit:


=IFS(Q26=10, 1000, Q26>=9.5, 600, Q26>=9, 500, Q26>=8.5, 400, TRUE, "fără bursă")


The use of TRUE obviates the need to test Q26<=8.49. And that is a good thing, because 8.49 is not the next value before 8.5, since you do not round the AVERAGE.



Alternatively:


=LOOKUP(Q26, {0, 8.5, 9, 9.5, 10}, {"fără bursă", 400, 500, 600, 1000})

Pecoflyer 08-12-2022 11:53 PM

1 Attachment(s)
Hi, your test order is not correct see attached

Kim Yoona 08-13-2022 07:59 AM

Hi guys! Thanks a lot both of you, because you've answer so quickly to my message. I'm a newbie on Excel, I'm trying to learn everyday. I will try your suggestions to see if it works as it should be.

In the future surely I will have more questions for you. Have a blessed day!:)

Kim Yoona 08-13-2022 08:02 AM

Quote:

Originally Posted by Pecoflyer (Post 169742)
Hi, your test order is not correct see attached

Yep, It works like a charm. Tks so much!:kiss:

Pecoflyer 08-14-2022 11:48 PM

I marked this thread as "solved" for you..


All times are GMT -7. The time now is 05:49 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft