Hoe to deduct date and time in one cell

marcidee

Board Regular
Joined
May 23, 2016
Messages
184
Office Version
  1. 2019
Please can you tell me if there is a formula / code that will deduct date and time if date and time are in the same cell.

ie

31/07/2019 15:00:00 less 01/08/2019 16:00:00 - using format (dd/mm/yyyyy hh:mm)

Thank you Marc
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
1. Use Power Query to split the column using the delimeter "less"
2. Close and Load to Excel
3. Add a column to the table in Excel
4. In new column "Difference" subtract Column B from A
5. Add new column to table "Days"
6. In column Days =Int(column Difference)
7. Add new column "Hours"
8. In new column Hours =Mod(column Difference,1)
9. Format Column Hours Custom 13:30


Data Range
A
B
C
D
E
1
Column1.1​
Column1.2​
Difference​
Days​
Hours​
2
07/31/2019 15:00:00​
08/01/2019 16:00:00​
1.041666667​
1​
1:00​

<tbody>
</tbody>


Note: I changed the date format for my calculation as I live in the US. You can do this using European Date Convention.
 
Last edited:
Upvote 0
Thank you for this - can you explain what I should be entering for point 6 above if answer of point 4 is in cell H9
 
Upvote 0
I have worked out row 6 - I am typing this for point 9 without success
=MOD(H9 Difference,1)
 
Upvote 0
Just out of curiosity, assuming your two dates are in cell A1, does this formula give you what you want directly...

=TEXT(TRIM(MID(A1,SEARCH("less",A1)+4,99))-TRIM(LEFT(A1,SEARCH("less",A1)-1)),"d ""day(s) ""h"" hour(s) ""m"" minute(s)""")
 
Upvote 0
thank you for this - the dates would be in 2 cells - lets say one date and time in Cell A1 and the second date and time in B1

30/06/2019 15:00:00 A1
01/08/2019 19:30:00 B1

B1 less A1
 
Upvote 0
I have used this for point 8

=MOD(E9-C9,1)*24

I can't work out how you have got the final result for point 9?
 
Upvote 0
thank you for this - the dates would be in 2 cells - lets say one date and time in Cell A1 and the second date and time in B1

30/06/2019 15:00:00 A1
01/08/2019 19:30:00 B1

B1 less A1
In that case, try this...

=TEXT(B1-A1,"d ""day(s) ""h"" hour(s) ""m"" minute(s)""")
 
Upvote 0

Forum statistics

Threads
1,216,471
Messages
6,130,823
Members
449,595
Latest member
jhester2010

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