IF AND NestedFormula

Joined
Oct 29, 2015
Messages
42
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am half-way through trying to write an IF AND formula to check various criteria and I am struggling to complete it. I was wondering if anyone can help?

Screenshot 2024-11-02 122327.png


In AB4 to AB11 I have an IF formula:

=IF(Z4="","",IF(Z4="Defined","Not Applicable",IF(Z4="Fee","Not Applicable"))).

The formula works to this point (at AB8) but I would like to also look up Columns Z and AA and Column K to determine the parties agree on whether an item should be paid.

If Z8 and AA8 = Disallowed and Column K = Yes AB = Yes
If Z9 does not = Disallowed and AA9 does = Disallowed AB = No (same applies to Row 10)

Can anyone kindly help?!
 

Attachments

  • Screenshot 2024-11-02 120723.png
    Screenshot 2024-11-02 120723.png
    9.3 KB · Views: 0
  • Screenshot 2024-11-02 122208.png
    Screenshot 2024-11-02 122208.png
    7.9 KB · Views: 0

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
This
=IF(Z4="","",IF(Z4="Defined","Not Applicable",IF(Z4="Fee","Not Applicable"))).
can be shortened to
Excel Formula:
=IF(Z4="","",IF(OR(Z4={"Defined","Fee"}),"Not Applicable")))
.
 
Upvote 0

Forum statistics

Threads
1,223,577
Messages
6,173,162
Members
452,503
Latest member
AM74

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