Working Across Time Zones: How to Schedule Without Missing Meetings
Remote work made time zones everyone's problem. Here's how UTC, offsets and daylight saving actually work — and a simple system for scheduling across the world without missed meetings.
On this page
- Why time zones exist at all
- UTC: the one clock everything is measured from
- An offset is not the same as a time zone
- Daylight Saving Time: the number-one source of scheduling bugs
- The half-hour and 45-minute zones
- How to schedule across time zones without mistakes
- Counting business days and deadlines across regions
- For developers: store in UTC, display in local
- Common mistakes to avoid
- Frequently asked questions
- The bottom line
"Let's meet at 4pm." It sounds perfectly clear until you realise nobody said whose 4pm. Remote teams, freelancers with overseas clients, families spread across continents, and anyone booking an international call all run into the same wall: a time is meaningless until you attach a place to it.
Time zones feel needlessly confusing, but most of the confusion comes from a handful of specific things — daylight saving, the difference between an offset and a zone, and the odd half-hour regions — rather than the concept itself. Once those click into place, scheduling across the world becomes routine. This guide walks through how time zones actually work, the traps that cause missed meetings, and a simple system that keeps you from ever guessing.
Why time zones exist at all
The Earth rotates once every 24 hours, so at any given moment the sun is overhead somewhere and it's the middle of the night on the opposite side. Local time is anchored to the sun — noon is roughly when the sun is highest — which means clocks have to differ by location. Rather than every town keeping its own solar time (which is exactly how it worked before railways), the world is divided into zones, each offset from a single global reference by a whole or partial number of hours.
That single global reference is the key to the whole system, and it has a name worth knowing well.
UTC: the one clock everything is measured from
UTC (Coordinated Universal Time) is the modern time standard the entire world is synchronised to. It doesn't observe daylight saving, it never changes, and every other zone is defined as an offset from it — New York is UTC−5 in winter, India is UTC+5:30 all year, Tokyo is UTC+9. If you can think in UTC, every other time becomes simple arithmetic.
| City / region | Standard offset | Observes DST? |
|---|---|---|
| Los Angeles (Pacific) | UTC−8 | Yes |
| New York (Eastern) | UTC−5 | Yes |
| London (GMT) | UTC+0 | Yes |
| Berlin / Paris (Central Europe) | UTC+1 | Yes |
| Mumbai / Delhi (India) | UTC+5:30 | No |
| Singapore | UTC+8 | No |
| Tokyo (Japan) | UTC+9 | No |
| Sydney (Eastern Australia) | UTC+10 | Yes (reversed) |
An offset is not the same as a time zone
This is the distinction that clears up most confusion. A UTC offset is just a number, like +5:30. A time zone is a named region with a set of rules that decide which offset applies at any given date — including whether and when it switches for daylight saving.
"America/New_York" is a time zone; it's UTC−5 for part of the year and UTC−4 for the rest. "UTC−5" on its own is only an offset — a snapshot, not the whole story. This is why saying "I'm on EST" in July is technically wrong: in summer, the US East Coast is on EDT (UTC−4), not EST (UTC−5). The zone stayed the same; the offset moved.
That moving offset is where nearly every scheduling mistake comes from.
Daylight Saving Time: the number-one source of scheduling bugs
Many regions shift their clocks forward an hour in spring and back an hour in autumn to make better use of daylight — "spring forward, fall back." It sounds harmless, but it quietly breaks assumptions in three ways.
- Not everyone observes it. India, most of Africa and Asia, and Arizona in the US never change their clocks. So the gap between you and a partner region can widen or narrow twice a year even if only one of you shifts.
- The changeover dates don't line up. The US switches on the second Sunday of March and first Sunday of November; the EU switches on the last Sunday of March and last Sunday of October. That leaves a two-to-three-week window each spring and autumn where the US and Europe are an hour "off" from their usual gap — a classic cause of a meeting that's suddenly an hour early or late.
- The Southern Hemisphere is reversed. When it's summer in Europe it's winter in Australia, so their DST runs on the opposite calendar. During those overlaps a Sydney–London call can move by two hours relative to the rest of the year.
The half-hour and 45-minute zones
A common assumption is that there are 24 neat time zones, one per hour. There are actually closer to 40 offsets in use, because several regions sit on partial-hour offsets:
- 30-minute offsets: India (UTC+5:30), Iran (UTC+3:30), parts of central Australia (UTC+9:30), and Newfoundland in Canada (UTC−3:30).
- 45-minute offsets: Nepal (UTC+5:45), the Chatham Islands (UTC+12:45), and the Eucla region of Australia (UTC+8:45).
These trip up mental math and even some software. If you've ever had a calendar invite land on the half-hour unexpectedly, a partial offset is usually why.
How to schedule across time zones without mistakes
You don't need to memorise any of this to schedule reliably. You need a small set of habits.
- Always name the zone. "3pm" is ambiguous; "3pm New York time (ET)" is not. Better still for written invites, add the UTC time: "3pm ET / 20:00 UTC."
- Quote the time in the other person's zone. It's a small courtesy that removes their mental math — and their chance of getting it wrong.
- Let a tool do the conversion. Don't calculate offsets in your head, especially across DST. Convert once, deliberately, and paste the result.
- Use a calendar invite, not just a message. A proper calendar event stores the time correctly and shows each attendee their own local time automatically, DST included.
- Double-check around clock-change dates. If the meeting falls near a DST transition, confirm it.
For the actual conversion, this handles daylight saving and partial offsets for you, so you're not reasoning about any of it manually:
Try it right here
Timezone Converter
Counting business days and deadlines across regions
Time zones are only half the calendar problem. The other half is business days. "Delivery in 10 business days," "respond within 5 working days," "notice period: 30 working days" — contracts, couriers, banks and HR all count in working days, skipping weekends and public holidays.
The catch across regions is that holidays differ by country, and even the working week isn't universal — in much of the Middle East the weekend falls on Friday and Saturday, not Saturday and Sunday. So "5 business days" can land on genuinely different calendar dates depending on whose calendar you count. When a deadline actually matters, convert the promise into a real date rather than trusting a rough estimate:
Try it right here
Business Days Calculator
And when you simply need the raw gap between two dates — a notice period, an interest-day count, days until a launch — the Date Difference Calculator counts it exactly, leap years included, while the Countdown Timer turns a target date into a live count you can keep an eye on.
For developers: store in UTC, display in local
If you build anything that records timestamps, time zones stop being a scheduling nuisance and become a correctness issue. A few principles save an enormous amount of pain.
- Store every timestamp in UTC. Convert to the user's local zone only at the moment you display it. A database full of UTC is unambiguous; a database full of "local times" with no offset is a bug waiting to happen.
- Use ISO 8601 for exchange. A string like
2026-07-10T14:30:00Z(theZmeaning UTC) or2026-07-10T20:00:00+05:30is sortable, unambiguous, and understood everywhere. Avoid ad-hoc formats like "10/07/26 2:30" that hide both the zone and the day/month order. - Store IANA zone names, not fixed offsets, for future events. Save "Europe/London", not "UTC+1". Because the offset changes with DST, only the named zone lets you compute the correct future time after a clock change or a change in local law.
- Let the platform do the math. Modern date libraries and the browser's own
Intl.DateTimeFormatknow the full history of DST rules from the IANA database. Reimplementing offset logic by hand is how subtle, seasonal bugs are born.
Common mistakes to avoid
- Saying a time with no zone. The root cause of most missed calls. Always attach ET, IST, UTC, or similar.
- Assuming the gap is fixed year-round. The difference between two cities changes when either one enters or leaves daylight saving.
- Forgetting partial offsets. India and Nepal aren't on whole-hour offsets; a "round" mental conversion will be 30 or 45 minutes wrong.
- Trusting "EST" in summer. Half the year the US East Coast is on EDT. When in doubt, use the neutral UTC time or the city name.
- Storing local timestamps in a database. Without an offset, they're ambiguous the moment daylight saving shifts. Store UTC.
- Scheduling recurring meetings and never revisiting them. DST transitions quietly shift the relative time twice a year; a quick check around the change dates avoids confusion.
Frequently asked questions
The bottom line
Time zones only feel chaotic until you have an anchor. That anchor is UTC: one clock the whole world is measured against, with every region a known offset away. Most real-world mistakes come from just two things — forgetting to name the zone, and forgetting that daylight saving quietly moves the offset twice a year. Name the zone, watch the DST windows, and let a converter handle the arithmetic.
Do that and coordinating across the world stops being a source of missed meetings. Convert times with the Timezone Converter, turn "10 business days" into a real date with the Business Days Calculator, and measure any gap exactly with the Date Difference Calculator — each runs right in your browser, so there's nothing to install and nothing to sign up for.
Hands on
Tools mentioned in this article
Timezone Converter
Convert any date and time across global timezones.
Business Days Calculator
Count working days (Mon–Fri) between two dates.
Date Difference Calculator
Find the number of days, months and years between two dates.
Countdown Timer
Count down to any future date and time, live.
More guides
Keep reading

What is JSON and how to format it correctly
A practical guide to JSON syntax, the mistakes that break it, and how a formatter turns a wall of text into something you can actually debug.

How to calculate EMI on any loan
The EMI formula explained in plain terms, a worked example, and what actually happens to your money over the life of a loan.

Password best practices in 2026
Why length beats complexity, how passphrases work, and a realistic system for managing passwords without losing your mind.
Put it into practice
Every guide comes with free tools to match.
No signup, no uploads — everything runs in your browser.
