Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find Time difference in millisecond in excel

Tags:

excel

Time 1 :2014-10-17 06:08:53,793

Time 2 :2014-10-17 06:08:56,188

flow start time flow end time

2014-10-17 06:08:56,632 2014-10-17 06:08:56,674

2014-10-17 06:09:57,479 2014-10-17 06:09:57,517

2014-10-17 06:10:00,763 2014-10-17 06:10:00,809

I need to find the difference in hours,minutes.second and millisecond. Please give me a excel formula for that.

like image 843
Devarajan CM Avatar asked Oct 20 '22 23:10

Devarajan CM


1 Answers

If your values are valid date/time values you can just subtract one from the other e.g. with earlier time in A2

=B2-A2

custom format result cell to the requisite format, e.g.

[h]:mm:ss,000

like image 154
barry houdini Avatar answered Nov 01 '22 10:11

barry houdini