I've got this table where I'm trying to find the difference between two dates in the format. I have three columns with dates in the format of 28/01/2015 21:43
Following is the table I have,
Created date Start date end date time to start time to start from create date time to finish from created date
11/02/2015 12:46 11/02/2015 16:15 13/02/2015 17:21 00 days 03:29:07 02 days 01:06:27 02 days 04:35:34
17/11/2014 15:17 27/11/2014 21:43 20/01/2015 19:21 10 days 06:26:52 22 days 21:37:17 04 days 04:04:09
22/12/2014 09:38 22/12/2014 09:49 16/01/2015 04:02 00 days 00:11:31 24 days 18:12:48 24 days 18:24:19
25/11/2014 10:58 25/11/2014 11:35 13/01/2015 17:35 00 days 00:37:04 18 days 06:00:39 18 days 06:37:43
13/01/2015 09:03 13/01/2015 09:42 13/01/2015 12:27 00 days 00:39:37 00 days 02:44:59 00 days 03:24:36
I've calculated the difference between dates (last three columns)using the below formula,
=TEXT(C1-B1,"dd"" days ""hh:mm:ss")
which works for most part, but not for ones with a start date in 2014 and an end date in 2015. It completely discounts December, it counts days only up to November and then jumps to January. (As seen in line 2 and 4)
Is there any way to stop this?