Multiple If Query

Excel_77

Active Member
Joined
Sep 15, 2016
Messages
306
Office Version
  1. 2019
Platform
  1. Windows
Hi All,

I want to carry out a query that does the below:

1. If A1 = Yes return - "Ignore".

2. If A1 = No and B1 = "GBP", I want to then check if R1 is over 1000, if it is return "review" otherwise I want the calculation O1-500 performed.

3. If A1 = No and B1 = "EUR", I want to then check if R1 is over 1500, if it is return "review" otherwise I want the calculation O1-600 performed.

4. Finally If A1 = No and B1 = anything other than GBP or EUR I want to then check if R1 is over 1500, if it is return "review" otherwise I want the calculation O1-650 performed.

Can anyone help?
 
Last edited:

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Perhaps . . .

=if(A1="Yes","Ignore",if(B1="GBP",if(R1>1000,"review",o1-500),if(B1="EUR",if(R1>1500,"review",o1-600),if(R1>1500,"review",o1-650))))

Assumes A1 can only be "Yes" or "No"
 
Upvote 0
Perhaps . . .

=if(A1="Yes","Ignore",if(B1="GBP",if(R1>1000,"review",o1-500),if(B1="EUR",if(R1>1500,"review",o1-600),if(R1>1500,"review",o1-650))))

Assumes A1 can only be "Yes" or "No"

Thanks, that's brilliant.
 
Upvote 0

Forum statistics

Threads
1,214,789
Messages
6,121,593
Members
449,038
Latest member
Arbind kumar

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