time zones calculators

Global Work Shift Overlap Calculator

Calculate the exact number of minutes or hours two globally distributed teams share during their working days. Use it when planning cross-team collaboration windows, handoffs, or standups between offices in different cities.

About this calculator

To find overlap between two teams in different time zones, each team's local shift must be converted to UTC. For Team 1: t1StartUTC = team1Start − team1Timezone × 60 and t1EndUTC = team1End − team1Timezone × 60. The same conversion applies to Team 2. Overlap (in minutes) = max(0, min(t1EndUTC, t2EndUTC) − max(t1StartUTC, t2StartUTC)). A positive value means the teams share that many minutes of simultaneous working time. Zero means no real-time collaboration is possible within standard hours. Converting to hours gives a cleaner picture for scheduling recurring syncs or handoff calls.

How to use

Team 1 is in Berlin (UTC+2), working 9:00–17:00 local (540–1020 mins from midnight). Team 2 is in New York (UTC−5), working 9:00–17:00 local (540–1020 mins). t1StartUTC = 540 − 2×60 = 420, t1EndUTC = 1020 − 120 = 900. t2StartUTC = 540 − (−5×60) = 540 + 300 = 840, t2EndUTC = 1020 + 300 = 1320. Overlap = max(0, min(900,1320) − max(420,840)) = max(0, 900 − 840) = 60 minutes. The two teams share just 1 hour of simultaneous working time each day (15:00–16:00 Berlin / 09:00–10:00 New York).

Frequently asked questions

How do I calculate working-hour overlap between teams in different time zones?

Convert each team's local shift start and end times to UTC by subtracting the UTC offset (in minutes). Then find the intersection: overlap = max(0, min of both end times − max of both start times). A positive result gives the shared window in minutes. Dividing by 60 converts it to hours, which is more practical for scheduling recurring meetings or handoff syncs.

What is a good amount of daily overlap for distributed teams to collaborate effectively?

Most collaboration researchers suggest a minimum of two hours of daily overlap for distributed teams to maintain effective real-time communication. Below one hour, synchronous collaboration becomes impractical and teams must rely heavily on asynchronous tools. Above four hours, teams can sustain most processes that a co-located team would use. The ideal amount depends on the nature of work — creative and interdependent work needs more overlap than task-handoff workflows.

How can teams with zero working-hour overlap still collaborate across time zones?

When no overlap exists, teams must adopt strong asynchronous practices: detailed written documentation, recorded video updates, shared task boards, and clear handoff protocols. Staggered shifts or flexible working hours can create a small window of overlap if team members are willing. Some companies also designate one team member per region to be available for a short cross-timezone call each day on a rotating basis to maintain alignment.