IF Statement

MrsVodes3965

New Member
Joined
Dec 9, 2020
Messages
3
Office Version
  1. 365
Platform
  1. Windows
=IF(G4=0, IF(C4=0, "None","Review MC"),IF(C4=0, "Review MD claim", IF(C4=G4,"Let system price","Follow"))) works but now I need to add another IF or 2

IF column D = $0.00 and column H = $0.00 then "deny" otherwise complete the above formula. I got it to work partially but it puts in deny when columns D and H are blank(empty field) which is not correct. If blank it should do the above formula. I am in need of a nested IF

If D&H condition is met then "Deny", If D&H are blank or more than $0.00 then do top formula.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
=IF(AND(D4=0,H4=0),"Deny",IF(G4=0, IF(C4=0, "None","Review MC"),IF(C4=0, "Review MD claim", IF(C4=G4,"Let system price","Follow"))))

I'm not sure what is the purpose of "IF(G4=0" is in your formula?
 
Upvote 0
Strange, very same formula is working for me perfectly fine.
=IF(AND(D4=0,H4=0),"Deny",IF(G4=0, IF(C4=0, "None","Review MC"),IF(C4=0, "Review MD claim", IF(C4=G4,"Let system price","Follow"))))

1607566458851.png
 
Upvote 0

Forum statistics

Threads
1,215,634
Messages
6,125,934
Members
449,275
Latest member
jacob_mcbride

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