Skip to content
motifuse
Guide
12 min read

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.

The motifuse team

"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 / regionStandard offsetObserves DST?
Los Angeles (Pacific)UTC−8Yes
New York (Eastern)UTC−5Yes
London (GMT)UTC+0Yes
Berlin / Paris (Central Europe)UTC+1Yes
Mumbai / Delhi (India)UTC+5:30No
SingaporeUTC+8No
Tokyo (Japan)UTC+9No
Sydney (Eastern Australia)UTC+10Yes (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.

  1. 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."
  2. 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.
  3. Let a tool do the conversion. Don't calculate offsets in your head, especially across DST. Convert once, deliberately, and paste the result.
  4. 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.
  5. 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

Open full tool

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

Open full tool
Loading embedded tool...

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 (the Z meaning UTC) or 2026-07-10T20:00:00+05:30 is 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.DateTimeFormat know 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

What's the difference between UTC and GMT?
For everyday use, none — both sit at a zero offset and give the same clock time. Technically, UTC is a time standard kept by atomic clocks, while GMT is a time zone (the one the UK uses in winter). In software, aviation and science, UTC is the precise term; in casual conversation people use them interchangeably.
Why are some time zones offset by 30 or 45 minutes?
Because offsets are set by each region for its own political and practical reasons, not by a rule that they must be whole hours. India chose UTC+5:30 as a single national time spanning a wide country; Nepal uses UTC+5:45; Newfoundland uses UTC−3:30. There are around 40 distinct offsets in use worldwide, not 24.
Does a timezone converter account for daylight saving?
A good one does, automatically, because it uses the IANA time zone database that encodes each region's DST rules and history. That's exactly why converting with a tool beats doing offset arithmetic in your head — the tool knows whether a given date falls inside daylight saving for both zones.
How do I schedule a recurring meeting when clocks change?
Create it as a proper calendar event pinned to a specific city's time zone (for example, "9am America/New_York"), not a fixed UTC offset. The calendar will then keep it at 9am local for the host through DST changes, and each attendee sees their own correctly adjusted local time. Just be aware their offset relative to the host may shift for a couple of weeks when regions change on different dates.
What is ISO 8601 and why does it matter?
ISO 8601 is the international standard for writing dates and times, like 2026-07-10T14:30:00Z. It puts the largest unit first (year, then month, then day), which makes it sort correctly as plain text, and it can carry the UTC offset explicitly. It removes the ambiguity of formats where you can't tell the day from the month, or the local time from UTC.
What's the best way to store timestamps in an application?
Store them in UTC and convert to the user's local zone only for display. For events in the future, also store the intended IANA zone name so daylight saving is handled correctly if rules change. This keeps your stored data unambiguous and pushes all the messy local-time logic to the presentation layer, where a good date library can handle it.

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.

Put it into practice

Every guide comes with free tools to match.

Public tools open without sign-up. Local, upload, AI, and premium workspace steps are labeled clearly.

Explore all tools