Formula RQ for IF Condition

jamsJHTA

New Member
Joined
Jan 2, 2025
Messages
1
Office Version
  1. 2021
Platform
  1. Windows
I Need Formula For multiple Conditions, using Below-Mentioned formula but given errors.

ColumA Column B Column C Column D

NARFuelGRMUsing Formula But Given WrongResult
96.87%4200IF(A2=100%,"YES",IF(B2>"0"&C2>="3","YES","NO"))YES
 

Attachments

  • Mr.Excel.jpg
    Mr.Excel.jpg
    25.5 KB · Views: 6

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Is this what you wanted?
Book1
ABCD
1NARFuelGRMUsing Formula But Given Wrong
296.87%4200NO
Sheet1
Cell Formulas
RangeFormula
D2D2=IF(A2=100%,"YES",IF(AND(B2>0,C2>=3),"YES","NO"))
 
Upvote 0
Hi & welcome to MrExcel.
Another option
Excel Formula:
=IF(OR(A2=1,AND(B2>0,C2>=3)),"YES","NO")
 
Upvote 0
One more option:
Excel Formula:
=IF((A2=1)+B2*(C2>=3),"YES","NO")
 
Upvote 0

Forum statistics

Threads
1,225,487
Messages
6,185,274
Members
453,285
Latest member
Wullay

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