Add IFERROR to IF Statement with Multiple Conditions

wsr429

New Member
Joined
Mar 18, 2023
Messages
9
Office Version
  1. 2016
Platform
  1. MacOS
Hi, I would like to add an IFERROR to the beginning of my IF statement: IF(AND(A1="x",B1>=100),1.5,IF(AND(A1="y",B1<100),0,99))

I have tried to add the syntax for IFERROR, but the correct answer eludes me. I am using Excel for Mac Version 16.89.1.

Any help would be appreciated!

William


MrExcelQuestion.jpg
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
But your formula could not return an error, unless one of cells A1 or B1 has an error, for example:

varios 26sep2024.xlsm
ABC
1a#N/A
2
3There is error here
4
Hoja2
Cell Formulas
RangeFormula
B1B1=NA()
A3A3=IFERROR(IF(AND(A1="x",B1>=100),1.5,IF(AND(A1="y",B1<100),0,99)),"There is error here")


Your formula is correct, if the first condition is met, it returns 1.5, if the second condition is met it returns 0, if no condition is met, then it returns 99.
If you are looking for some other value to be returned, then explain what the conditions would be for another value to be returned.
 
Upvote 0
Solution

Forum statistics

Threads
1,223,214
Messages
6,170,772
Members
452,353
Latest member
strainu

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