Date calculations

EJKS

New Member
Joined
Feb 18, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I've enjoyed learning a lot from this forum, but I've added in complications that take this query beyond my capability.

Column A is the start date
Column B is the end date
Column C is the length of time in days between start and end
Eg A = 01/01/2000, B = 03/01/2000 then C = 2
However, if A is empty, C should remain empty. If A contains a date but B is empty, C should calculate number of days up to today's date.

Ideas gratefully received
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
=IF( A2="","", IF( B2="", Today() - A2, B2-A2))
 
Upvote 0
Solution
T
=IF( A2="","", IF( B2="", Today() - A2, B2-A2))
Thanks for the super quick reply! Seeing the correct formula also lets me understand where I was going wrong, thank you!
 
Upvote 0

Forum statistics

Threads
1,214,838
Messages
6,121,885
Members
449,057
Latest member
Moo4247

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