Convert Seconds to Minutes in Google Sheets: Easy Steps

LAST UPDATED
June 6, 2024
Jason Gong
TL;DR

Divide your seconds by 60 to convert to minutes in Google Sheets.

By the way, we're Bardeen, we build a free AI Agent for doing repetitive tasks.

If you're working with time data, you might love our GPT in Spreadsheets feature. It helps automate data conversion and other tasks, making your work easier.

Converting seconds to minutes in Google Sheets is a common task that can be achieved using various methods. In this step-by-step guide, we'll explore different techniques to help you efficiently convert seconds to minutes, from basic formulas to advanced functions and even automating the process with Google Sheets scripts. By the end of this guide, you'll be equipped with the knowledge to handle time conversions in your spreadsheets with ease.

Understanding Time Formats in Google Sheets

Google Sheets offers two main ways to format time data: duration format and time format. Duration format represents a length of time, such as "3:45" for 3 hours and 45 minutes, while time format represents a specific time of day, like "3:45 PM".

By default, Google Sheets uses the time format, which can sometimes lead to confusion when working with durations. To change this, you can adjust the format settings:

  1. Select the cells containing your time data
  2. Click "Format" in the menu bar
  3. Choose "Number" and then select "Duration" or "Time" as needed

Keep in mind that the default time settings can affect how you input and display your data. For example, if you enter "3:45" in a cell without specifying AM or PM, Google Sheets will automatically assume AM. Understanding these nuances can help you work more effectively with time data in your spreadsheets. For more advanced functionalities, consider adding ChatGPT to Google Sheets.

Convert Seconds to Minutes Using Basic Formulas

Converting seconds to minutes in Google Sheets is a straightforward process using simple arithmetic formulas. Follow these steps:

  1. Identify the cell containing the seconds value you want to convert, for example, cell A2.
  2. In a new cell, enter the formula =A2/60. This divides the value in A2 by 60, as there are 60 seconds in a minute.
  3. Press Enter to apply the formula. The cell will now display the equivalent minutes value.

If you have multiple cells with seconds values to convert, you can easily apply this formula to all of them:

  1. Select the cell with the formula and copy it (Ctrl+C or Cmd+C).
  2. Highlight the range of cells where you want to apply the formula.
  3. Paste the formula (Ctrl+V or Cmd+V) to apply it to all selected cells. Google Sheets will automatically adjust the cell reference in each row.

Remember to format the cells containing the converted values as "Number" or "Time" for better readability. With these simple steps, you can quickly convert seconds to minutes in your Google Sheets workbooks. For more advanced features, consider integrating Google Sheets with other powerful tools.

Save even more time by using Bardeen to connect Google Sheets with other apps and automate your workflows in just a few clicks.

Custom Number Formatting for Time Data

Google Sheets offers a convenient way to customize the display of time data using the custom number formatting feature. Here's how to access and set up a custom format for minutes and seconds (mm:ss):

  1. Select the cells containing the time data you want to format.
  2. Click on the "Format" menu in the toolbar and choose "Number" followed by "More formats" and then "Custom number format."
  3. In the "Custom number format" dialog box, you'll see a text field where you can enter your desired format.
  4. To display minutes and seconds, type the following format: mm:ss.
  5. If you want to include hours as well, use this format: hh:mm:ss.
  6. Click "Apply" to apply the custom format to the selected cells.

Your time data will now display in the specified minutes and seconds format. Some additional tips:

  • If your time values exceed 24 hours, use the square bracket format: [hh]:mm:ss.
  • For single-digit minutes or seconds, add a leading zero by using two "m" or "s" characters in the format.
  • You can also include AM/PM by adding "AM/PM" to the end of the format, like this: hh:mm:ss AM/PM.

By mastering custom number formatting for time data, you can ensure your Google Sheets spreadsheets display time values precisely how you need them. For advanced tasks, you might consider using integrate Excel with other tools to enhance your workflows.

Advanced Techniques: Using TIME and TEXT Functions

Google Sheets offers powerful functions for converting and formatting time data, such as the TIME and TEXT functions. Here's how to use them to convert seconds into a time value and format the result:

  1. To convert seconds into a time value, use the TIME function with this syntax: TIME(hour, minute, second). For example, to convert 3,665 seconds, you would use: =TIME(0,0,3665). This returns a time value of 1:01:05 (1 hour, 1 minute, 5 seconds).
  2. To format the result from the TIME function into a more readable format, nest it within the TEXT function like this: =TEXT(TIME(0,0,3665),"h:mm:ss"). The "h:mm:ss" argument specifies the desired format: hours, minutes, and seconds.
  3. If your original seconds data is in cell A2, your complete formula would be: =TEXT(TIME(0,0,A2),"h:mm:ss").

Some additional tips for using TIME and TEXT:

  • To display minutes and seconds only, use this custom number format instead: "mm:ss".
  • For values exceeding 24 hours, use the "[h]:mm:ss" format to display hours greater than 24.
  • You can also calculate the difference between two time values by subtracting them, like this: =TEXT(TIME(0,0,A2) - TIME(0,0,A1),"h:mm:ss")

By combining the TIME and TEXT functions, you can convert seconds to minutes or hours and format the result exactly as needed. For more advanced use, you can bring AI into your spreadsheet to automate these tasks.

Want to save time and avoid manual work? Use Bardeen to enrich LinkedIn profile links directly into your Google Sheets.

Automating Conversions with Google Sheets Scripts

Google Apps Script is a powerful tool that allows you to automate repetitive tasks in Google Sheets, such as converting seconds to minutes and formatting the cells. Here's how to get started:

  1. In your Google Sheet, go to Tools > Script editor to open the script editor.
  2. Delete any existing code and replace it with the following script:

function convertSecondsToMinutes() {var sheet = SpreadsheetApp.getActiveSheet();var range = sheet.getDataRange();var values = range.getValues();for (var i = 0; i < values.length; i++) {var seconds = values[i][0];var minutes = Math.floor(seconds / 60);var remainingSeconds = seconds % 60;values[i][0] = minutes + ":" + (remainingSeconds < 10 ? "0" : "") + remainingSeconds;}range.setValues(values);range.setNumberFormat("m:ss");}

This script does the following:

  • Gets the active sheet and its data range
  • Loops through each row, converting seconds to minutes and seconds
  • Updates the cell values with the converted time
  • Formats the cells as "m:ss" (minutes:seconds)
  1. Save the script and give it a name like "ConvertSecondsToMinutes".
  2. Close the script editor and refresh your Google Sheet.
  3. You'll now see a new menu item called "ConvertSecondsToMinutes". Click it to run the script and automatically convert all the seconds values to minutes and format the cells.

Some additional tips:

  • If your seconds data is in a different column, modify the script to reference the correct column index (e.g., values[i][1] for column B).
  • You can set up a trigger to run the script automatically when new data is added or on a schedule.
  • Combine this script with other functions like getData() to retrieve data from an external source and convert it automatically.

By leveraging Google Apps Script, you can save time and reduce errors by automating the process of converting seconds to minutes directly in your Google Sheets. For more advanced automation, consider using a free AI web scraper to extract and manage data efficiently.

Automate Google Sheets with Bardeen: Time-Saving Examples

Converting seconds to minutes in Google Sheets is a task that can be easily automated to save time and ensure accuracy in your calculations. While manually applying formulas is effective, automating this process with Bardeen can streamline your workflow, especially when working with large data sets or when needing to perform this conversion on a regular basis.

Here are some examples of how Bardeen's automation can be applied to Google Sheets:

  1. Copy a newly created Asana task to Google Sheets: This playbook automates the process of adding new tasks from Asana directly into a Google Sheets document, saving you the hassle of manual data entry and ensuring your sheets are always up-to-date.
  2. Get a daily summary of your emails and save to Google Sheets: Streamline your email management by summarizing your daily emails and saving the insights directly into Google Sheets. This playbook helps you keep track of important communications without the need to manually sift through your inbox.
  3. Create a ClickUp task when a Google Sheets spreadsheet is modified: Enhance your project management by automatically creating tasks in ClickUp whenever a Google Sheets spreadsheet is modified. This ensures seamless integration between your project management tools and your data analysis efforts.
Contents
GPT Automation in Spreadsheets

Bardeen's GPT in Spreadsheets handles data tasks, saving you time in Google Sheets.

Get Bardeen free

Related frequently asked questions

Scrape LinkedIn Profiles with Selenium in 8 Steps

Learn to scrape LinkedIn profiles using Selenium in Python. This guide covers setup, navigating, extracting data, and saving it efficiently.

Read more
How to Use Notion AI: A Complete Step-by-Step Guide

Discover how to use Notion AI to automate tasks, enhance content creation, and boost productivity. Follow our complete guide for effective implementation.

Read more
How to Embed Google Sheets in Docs: A Step-by-Step Guide

Learn how to insert and link Google Sheets into Google Docs for dynamic data updates and reports. Step-by-step guide for embedding tables and Excel data.

Read more
Calendly Explained: Beginner’s Guide to Scheduling

Discover how Calendly simplifies scheduling. Learn its core features, integration options, and how to start automating your appointments effectively.

Read more
Insert Symbols in Google Sheets: Easy Methods (2024)

Discover how to insert symbols like degree, euro, and delta in Google Sheets using shortcuts, CHAR function, and copy/paste methods.

Read more
Convert Google Doc to Sheets: A Step-by-Step Guide (7 Steps)

Learn to convert Google Doc to Sheets in 7 steps. Manage tabular data efficiently by importing .html files into Sheets for analysis and reporting.

Read more
how does bardeen work?

Your proactive teammate — doing the busywork to save you time

Integrate your apps and websites

Use data and events in one app to automate another. Bardeen supports an increasing library of powerful integrations.

Perform tasks & actions

Bardeen completes tasks in apps and websites you use for work, so you don't have to - filling forms, sending messages, or even crafting detailed reports.

Combine it all to create workflows

Workflows are a series of actions triggered by you or a change in a connected app. They automate repetitive tasks you normally perform manually - saving you time.

get bardeen

Don't just connect your apps, automate them.

200,000+ users and counting use Bardeen to eliminate repetitive tasks

Effortless setup
AI powered workflows
Free to use
Reading time
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
By clicking “Accept”, you agree to the storing of cookies. View our Privacy Policy for more information.