Total number of days from two different dates

IPDaily

New Member
Joined
Mar 1, 2018
Messages
2
G'day,

I wish to calculate the total number of days from a given date to todays date, simple you say, however, the reference date can be from one of two cells in "D" & or "E".
Any one of the two cells can be empty, any one of the two cells can contain a value, both can be empty at the same time, both can contain different dates at the same time.
The priority when both cells contain dates is to return the total number of days from cell "E" to todays date.
If only one of the two cells "D" or "E" have a date, I need the number of days, the difference to todays date referenced in cell "F".
If the both "D" & "E" cells are empty. I would like cell "F" to be blank (currently with the formula below I get 44819).
=IF(E75<1,TODAY()-D75, IF(E75>1,TODAY()-E75))

Note: cannot have a macro.
 

Attachments

  • 2022-09-15 11_15_40-Book1.xlsx - Excel.jpg
    2022-09-15 11_15_40-Book1.xlsx - Excel.jpg
    70.6 KB · Views: 9

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
.. or simplifying that slightly
Excel Formula:
=IF(D5&E5="","",TODAY()-IF(E5,E5,D5))
 
Upvote 0

Forum statistics

Threads
1,215,232
Messages
6,123,765
Members
449,120
Latest member
Aa2

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