Using IF in conjunction with AND in nested formula

halefamily104

New Member
Joined
Oct 11, 2016
Messages
31
Hello Again,

I am trying to calculate two different number of days to a certain date. There are three nested formulas:

=IF(AND(D16="Apples",FL16+365),IF(AND(D16="Bananas",FL16+365),IF(AND(D16="Oranges",FL16+90),"")))

So basically:
If D16 is Apples then you will add 365 days to the date in FL16
If D16 is Bananas, add 365 to FL16
If D16 is Oranges, add 90 days to FL16.

The formula above returning FALSE instead of the calculated date. Any ideas?


Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try:

Excel Formula:
=FL16+IF(OR(D16={"Apples","Bananas"}),365,90)
 
Upvote 0
Solution
Hi,

Or, you can reverse the logic and make it a bit shorter:

Excel Formula:
=FL16+IF(D16="Oranges",90,365)
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,857
Members
449,051
Latest member
excelquestion515

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