DATEDIF formula with multiple criteria (IF ...)

Test_Database_2021

New Member
Joined
Apr 6, 2021
Messages
9
Office Version
  1. 365
  2. 2016
  3. 2010
Platform
  1. Windows
Hi everyone,

So in Excel 2010, I have a DATEDIF formula that works perfectly, which is:
=IF((AND(Y:Y<>"",B:B<>"")),DATEDIF([@[Date of inclusion]],[@[Date of discharge]],"d")/7,""),IF((AND(B:B<>"",Y:Y=""))

B shows the first date (date of inclusion)
Y shows the second date (date of discharge)

What I now want to do is to add a condition where when there is no second date (column Y is empty), the date difference is calculated according to a fixed date (31/12/2020).

So something like this:
=IF((AND(Y:Y<>"",B:B<>"")),DATEDIF([@[Date of inclusion]],[@[Date of discharge]],"d")/7,""),IF((AND(B:B<>"",Y:Y="")),DATEDIF(Y:Y,12/31/2020,"d"/7,""))

...but clearly, this doesn't work as you can't have two DATEDIF formulas with a "false = """ condition in the same cell.

Any ideas? Thanks!
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Maybe
Excel Formula:
=IF([@[Date of inclusion]]<>"",DATEDIF([@[Date of inclusion]],if([@[Date of discharge]]<>"",[@[Date of discharge]],DATE(2020,12,31)),"d")/7,""),"")
 
Upvote 0
Oops, just remove the last ,"") form the formula
 
Upvote 0

Forum statistics

Threads
1,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

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