Google Maps killed the Commute tab—here’s what to use instead


One of Google Maps’ best features is not recent at all. In fact, it was introduced almost eight years ago, bringing with it the convenience that helped daily public transit commuters and drivers handle their trips with confidence.

Unfortunately, that feature isn’t available to everyone anymore, with Google gradually replacing it with newer interfaces and personalized recommendations. But with the right features and shortcuts, you can still make sure your commute is efficient. Here is all you need to know.

The Commute/Go tab

Something lost in the archive of Google Maps’ best older features

Google Maps routes on Android phone Credit: Justin Duino / How-To Geek

Google introduced the Commute (or Go) tab in 2018 as a smarter way to help people navigate their daily routines. Instead of simply offering directions, it learned your regular travel patterns, such as when you usually left for work or headed home, and proactively showed live traffic, transit updates, delays, alternate routes, and estimated travel times before you even searched for them. For frequent commuters, it quickly became one of Google Maps’ most useful features, making it feel like the app was almost prepared for your next journey or daily commute.

Here is the bad news: the Commute/Go tab is no longer available in all versions of Google Maps’ app, especially in newer versions, after the navigation app decided to redesign its bottom bar to be more minimal, and limit it to three main tabs: Explore, You, and Contribute (in my opinion, something that does not require its own, main navigation button, but I digress). So the convenience of the one-tap quick navigation of this tab may not be easily available. It is unclear if the shortcut has been permanently discontinued.

But the good news is that there are still many features every Google Maps user can take advantage of to make their commute easier, albeit without the same seamless user experience that the dedicated Commute tab provides.

Save your daily trips

Grab and go your everyday essential navigation

The Commute feature’s biggest advantage is that it makes the daily commute very simple, learning your travel patterns every day and showing you traffic updates, delays, and more variables. You can emulate that experience closely by setting up your regular destinations properly, so you create a makeshift shortcut.

I always recommend saving your Home and Work addresses under your Google Maps settings. If you frequently travel somewhere else, such as your gym or a family member’s or friend’s house, save those locations as well. This will give you easy access to these locations on your home page of the navigation app, so you don’t have to scramble around for directions on a busy Monday morning. Google Maps also uses these places to provide faster route suggestions, estimate travel times, and make navigation quicker.

First, in Google Maps, tap your profile picture, then go to Settings > Location & Privacy > Home and work addresses, and enter or refresh your Home and Work addresses. These priority places will usually show up at the top of your Google Maps home screen, making navigation a one-tap process.

Apart from these main addresses, you can save a place by simply searching for it and tapping the bookmark icon (the “Save” button). Then, tap the main bookmark icon (“You”) on the navigation bar to find the full list of your saved places for better navigation.

On top of this, adding labels to your favorite and frequently visited locations makes finding them a quick process. To do so, search for a point on your map, and on the toolbar below it, search for “Add label” and name it (or tap on “More” and “Add Label”). Doing so makes your search process faster as you can just search for these locations by their labels.

Turn on trip notifications

Know when to leave and what to look out for

A simple but overlooked feature that will instantly make your commute feel smoother is Google Maps’ notifications.

Enabling traffic notifications allows the app to warn you when your usual route is slower than normal because of accidents, road closures, or unusually heavy traffic. On busy mornings, this can give you enough time to leave earlier or choose an alternate route to cut your travel time shorter.

To set this up, open Google Maps and tap your profile picture, then go to Settings > Navigation > Alert options, and toggle it on. You can also toggle on “Get transit alerts when it’s time to get off” for easier public transit navigation.

Use layers on every route

Stack on the insights for efficiency

One thing I’ve started doing before almost every commute is checking the Traffic and Transit layers. Adding layers to your map makes every route feel custom-made, and there are a lot of options to choose from. This is definitely not a very seamless feature compared to the Commute tab, of course, but it is possibly the easiest way to get the best out of your commute, be it your work ride or a relaxing weekend getaway.

With the Traffic layer, for instance, instead of waiting until I begin navigation to discover congestion, I can spot which route is efficient for a faster commute, and which ones are backed up. This is a small navigation habit, but it has helped me avoid several slow-moving and inefficient routes over the past few months.

If you rely on public transport, the Transit layer can be just as useful, showing train lines and transit routes more clearly before you start your journey so you can plan and spot problematic routes.

To add a traffic layer to your navigation, open Google Maps, then tap the Layers icon (stacked squares) in the top-right corner. Under Map details, select Traffic (or Transit, depending on your commute choice). Search for a location. You will now be able to see an overlay on top of your regular Google Maps navigation screen, showing you fast and slow routes around the area and your destination.


After spending a few minutes setting up these features, you will definitely notice a difference in how your daily travel feels. Google Maps hosts a slew of features that will help you get the best out of the app, your everyday commute, and vacations you have planned for the year.



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Microsoft Excel handles temporal data effectively if you know which formulas to use. The problem is that Excel includes over 20 date and time functions, but most people only ever need a small core set to build powerful, self-updating workflows. These essential date functions turn messy timelines into automated systems you can actually rely on.

All examples in this guide use an Excel table (Ctrl+T) named ProjectTracker (pictured below). To follow along, download a free copy of the Excel workbook containing this table. After you click the link, you’ll find the download button in the top-right corner of your screen.

A structured Excel tracking table containing project tasks, start dates, and due dates.

Excel views your calendar as a massive string of numbers

The secret logic behind spreadsheet dates

Excel stores dates as serial numbers—starting at January 1, 1900—and displays them using date formats. For example, June 1, 2026 is stored internally as 46174. This allows you to perform arithmetic on dates, such as adding 7 to move forward one week.

Excel intentionally treats 1900 as a leap year for compatibility with older spreadsheet systems. This is not historically accurate, but it rarely affects modern workflows unless you’re working with very old date ranges.

Keep your timelines moving with real-time tracking

Creating a live project countdown with TODAY

If you currently update a “Today” cell manually each morning to keep deadlines accurate, Excel can replace that workflow with a dynamic function that always returns the current date.

To create a live countdown that updates automatically as time passes, add a new column with the following name, formula, and formatting:

Column Name

Days Remaining

Formula

=[@[Due Date]]-TODAY()

Number Format

General

When you press Enter, Excel may automatically format the result as a date instead of a number. That’s why you must select the table column and set the format to General in the Number group of the Home tab.

Each task displays the number of days remaining until its due date, with negative values indicating tasks that are already overdue.

The next time you open the workbook, the calculations will refresh and automatically update based on the new day.

Isolate specific time frames by breaking dates into pieces

Structuring reports with MONTH, YEAR, and WEEKDAY

When working with project schedules, full date values like 2026-07-24 are often too detailed for analysis. You may need to group tasks by month, summarize yearly progress, or identify scheduling issues like weekend start dates.

To extract the month, delete the Days Remaining column, then add a new one with these parameters:

Column Name

Month Due

Formula

=MONTH([@[Due Date]])

Number Format

General

Each task returns a numeric month value, such as 6 for June or 7 for July, making it easier to filter and group tasks by month.

To isolate the year for reporting across longer timelines, simply replace MONTH in the formula above with YEAR:

Column Name

Year Due

Formula

=YEAR([@[Due Date]])

Number Format

General

The numeric year component is successfully calculated for every row in the tracking table in Excel.

To identify scheduling issues, such as tasks that begin on weekends, you need a different approach because weekdays are not stored as simple calendar parts like month or year. Instead, Excel assigns each weekday a numeric position based on a selected system.

Here’s what to do in a new column:

Column Name

Weekday Due

Formula

=WEEKDAY([@[Start Date]], 2)

Number Format

General

With the 2 argument, Excel treats Monday as day 1 and Sunday as day 7. Without this argument, Excel uses its default system where Sunday is treated as day 1 and Saturday as day 7.

Each task now returns a number from 1 to 7, where values 6 and 7 correspond to Saturday and Sunday, making weekend starts easy to identify.

The numeric weekday component is successfully calculated for every row in the tracking table in Excel.

OS

Windows, macOS, iPhone, iPad, Android

Free trial

1 month

Microsoft 365 includes access to Office apps like Word, Excel, and PowerPoint on up to five devices, 1 TB of OneDrive storage, and more.


Calculate exact working durations without the weekend clutter

Using NETWORKDAYS to measure real work time

Calendar-based durations often overstate actual work time. A task running from Friday to Monday appears to take four days, even though only two are working days.

So, to calculate true working days between project milestones, add this column:

Column Name

Working Days

Formula

=NETWORKDAYS([@[Start Date]], [@[Due Date]])

Number Format

General

Excel returns the total number of working days between the start and due dates, counting both endpoints when they fall on working days.

To include holidays, create a separate range containing vacation dates (for example, starting in cell F2). Then, select the first Working Days formula cell, and extend the formula to:

=NETWORKDAYS([@[Start Date]], [@[Due Date]], $F$2:$F$5)

Using absolute references ($) ensures the holiday range does not shift when the formula is filled down the table.

When you press Enter, you’ll see that the calculation now excludes both weekends and holidays.

If your workweek is non-standard, use NETWORKDAYS.INTL to define custom weekend rules.

Map future deadlines and end-of-month cutoffs

Using WORKDAY and EOMONTH for automated scheduling

Beyond tracking existing timelines, Excel can generate future dates based on rules such as working durations and billing cycles.

To calculate a projected completion date based on working days, remove the Due Date column, then add these two columns.

Column 1:

Column Name

Expected Duration

Values

Manually enter the number of working days.

Number Format

General

Column 2:

Column Name

Projected Finish

Formula

=WORKDAY([@[Start Date]], [@[Expected Duration]])

Number Format

Date

Excel returns a date representing the expected completion based on the specified number of working days. It automatically skips weekends and returns the next valid working date.

To calculate billing cutoffs that always land on month-end, use this workflow:

Column Name

Billing Cutoff

Formula

=EOMONTH([@[Start Date]], 0)

Number Format

Date

Excel returns the last day of the month for each task, making billing cycles consistent.

Planning ahead with month-based review dates

Shifting dates across months with EDATE

Not all scheduling problems are about counting days. In real project work, you often work in monthly cycles—such as scheduled reviews, audits, or check-ins that repeat at predictable intervals.

For example, if a project phase starts on a given date, and you need to schedule a formal review three months later, Excel has a built-in function designed exactly for this. EDATE shifts a date by a specified number of months while preserving the day of the month when possible.

Here’s how to use it:

Column Name

Review Date

Formula

=EDATE([@[Start Date]], 3)

Number Format

Date

This moves the start date forward by three full months. For example, if the start date is June 1, 2026, Excel returns September 1, 2026.

You can also move backward in time when planning earlier review checkpoints, such as retrospective checks or pre-launch assessments. In those cases, you use a negative value:

=EDATE([@[Start Date]], -2)

Unlike day-based subtraction, EDATE respects calendar structure, making it more reliable than manually shifting dates.


Take control of your spreadsheet timelines

Ignoring Excel’s built-in date tools often leads to hours of manual updates and fragile spreadsheets. By understanding how Excel stores dates and using functions designed to work with them, you can build schedules that update themselves and forecast future milestones automatically. Once you’ve mastered tracking time with formulas, the next step is visualizing it—turn your data into a dynamic timeline that updates as your project evolves.



Source link