Time Card Calculator
Enter clock-in/out times and break minutes to compute total worked minutes and decimal hours, with automatic next-day handling.
Input Data
Results
At a glance:Total time = (clock-out − clock-in) − break; if clock-out is earlier than clock-in it is treated as next day (+24h). Results shown in minutes and decimal hours.
Formula
inTotal = inHour×60 + inMin; outTotal = outHour×60 + outMin.
If outTotal < inTotal: outTotal += 1440.
workMinutes = outTotal − inTotal − breakMin; workHours = workMinutes ÷ 60.
How to Use
- Enter clock-in/out hours and minutes, plus break minutes.
- Get total worked minutes and decimal hours instantly.
FAQ
How is crossing midnight handled?
If clock-out is earlier than clock-in, the calculator treats it as the next day (adds 24h), e.g. 22:00 in / 06:00 out = 8 hours.
How do decimal hours map to pay?
Multiply your hourly rate by decimal hours directly, e.g. 8.5 h × $100 = $850.
Related Tools
References
Content reviewed by the Calculatorism editorial team. Results are for reference only; please refer to the relevant authorities for the official figures.