Multiple If statements.

Kelleyscott

New Member
Joined
May 21, 2020
Messages
9
Office Version
  1. 365
Platform
  1. Windows
A1 (Fee) = $ Value
A2 (Lodged) = Yes/No
A3 (Type) = Multiple choices
A4 (Risk) = Yes/No
A5 (Option) = Fee Waiver
This IFS function does works but I would like to use an IF function so that rather than an #N/A response for False I would like "Declined"
=IFS(AND(A1<=30,A2="Yes",A3<>"Dishonour Fee - Auto",A5="Fee Waiver"),"APPROVED",AND(A3="Dishonour Fee - Auto",A4="Yes",B6="Fee Waiver"),"APPROVED")

Here are the requirements:
"Approved" = A1<=30 & A2 = "Yes" & A3<>"Dishonour Fee - Auto" & A5 = "Fee Waiver" ("Declined" if A1, A2, A3 or A5 has any other answer)
"Approved" = A3 = "Dishonour Fee - Auto" & A4 ="Yes" & A5 = "Fee Waiver" ("Declined if A3, A4 & A5 have any other answer)
 

Attachments

  • excel.PNG
    excel.PNG
    5.4 KB · Views: 4
  • excel 2.PNG
    excel 2.PNG
    5.2 KB · Views: 4
  • excel 3.PNG
    excel 3.PNG
    5.3 KB · Views: 4

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try:
Code:
=IF(B5<>"Fee Waiver","Declined",IF(B3<>"Dishonour Fee - Auto",IF(AND(B1<=30,B2="Yes"),"Approved","Declined"),IF(B4="Yes","Approved","Declined")))
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top