Anonymoose2435
New Member
- Joined
- Jan 27, 2022
- Messages
- 10
- Office Version
- 365
- 2021
- Platform
- Windows
I am trying to create a formula so that if the current time is GREATER than Start of break time, it'll show the difference between them in hh:mm:ss, if not it'll show 00:00:00. But everything is being calculated. Am i missing something? Current time as of this post is 3:58 PM
Module 5 Case Study(1).xlsx | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
4 | IT SUPPORT / HELPDESK | Start of break | Total hours on break | |||
5 | 1 | person1 | 11:55:00 AM | 03:54:24 | ||
6 | 2 | person2 | 2:20:00 PM | 01:29:24 | ||
7 | 3 | person3 | 9:34:00 AM | 06:15:24 | ||
8 | 4 | person4 | 8:56:00 PM | 18:53:24 | ||
9 | 5 | person5 | 7:54:00 PM | 19:55:24 | ||
10 | 6 | person6 | 12:03:00 PM | 03:46:24 | ||
11 | 7 | person7 | 1:17:00 AM | 14:32:24 | ||
12 | 8 | person8 | 4:12:00 AM | 11:37:24 | ||
13 | 9 | person9 | 5:45:00 AM | 10:04:24 | ||
14 | 10 | person10 | 6:35:00 AM | 09:14:24 | ||
15 | 11 | person11 | 10:08:00 AM | 05:41:24 | ||
16 | 12 | person12 | 2:07:00 PM | 01:42:24 | ||
17 | 13 | person13 | 1:15:00 PM | 02:34:24 | ||
18 | 14 | person14 | 3:56:00 PM | 23:53:24 | ||
Task 2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D5:D18 | D5 | =IF(NOW()>C5,NOW()-C5,TIME(0,0,0)) |