热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在Excel中将[h]:mm:ss转换为mm:ss-Convert[h]:mm:sstomm:ssinExcel

Ihaveadata-setcollectedfromGPStracker.Thetotaltimeinthedatashouldbemm:ss.ButExcel

I have a data-set collected from GPS tracker. The total time in the data should be mm:ss. But Excel is interpreting it as hours and minutes.

我有一个从GPS追踪器收集的数据集。数据中的总时间应为mm:ss。但Excel将其解释为小时和分钟。

How can I use a formula to convert it to Minutes and seconds? In the example below, 32 is supposed to be 32 minutes and 15 is supposed to be 15 seconds.

如何使用公式将其转换为分钟和秒?在下面的例子中,32应该是32分钟,15应该是15秒。

attached the screenshot of the dataset

2 个解决方案

#1


1  

Edit: It seems that the real issue is that the number before the colon is supposed to be minutes, but it has been stored as hours. So this is not just a display issue. You need to divide by 60 to turn hours to minutes and minutes to seconds.

编辑:似乎真正的问题是冒号之前的数字应该是分钟,但它已经存储为小时。所以这不仅仅是一个显示问题。您需要除以60才能将小时数分为几分钟和几分钟到几秒。

The text function allows you to display numbers in a different format. You can also apply this format: [mm]:ss in the cell itself using cell formatting without using a formula.

文本功能允许您以不同的格式显示数字。您也可以应用以下格式:[mm]:使用单元格格式化单元格中的ss而不使用公式。

If you want the total minutes:

如果你想要总分钟数:

=TEXT(A1/60,"[mm]:ss")

If you only want the minutes excluding hte hours:

如果你只想要除了小时的分钟数:

=TEXT(A1/60,"mm:ss")

#2


0  

An hour has 60 minutes. Thus, if you multiply the hour times 60, you would get the number of the minutes. Then you should add the seconds:

一小时有60分钟。因此,如果您将小时乘以60,您将获得分钟数。然后你应该添加秒:

=HOUR(A2)*60 & ":" & SECOND(A2)

From the comment: The table displays the data correctly already. For record A2, the minutes in 32 and the seconds is 15.

从评论:该表已经正确显示数据。对于记录A2,分钟数为32,秒数为15。

If you think that your data is correct, then I have some bad news for you. Long story short - On C1, D1 and E1 write the following:

如果你认为你的数据是正确的,那么我有一些坏消息。长话短说 - 在C1,D1和E1上写下以下内容:

=Hour(A2)
=Minute(A2)
=Second(A2)

Then it will show:

然后它会显示:

8
15
0

推荐阅读
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • 本文介绍了如何使用Python爬取妙笔阁小说网仙侠系列中所有小说的信息,并将其保存为TXT和CSV格式。主要内容包括如何构造请求头以避免被网站封禁,以及如何利用XPath解析HTML并提取所需信息。 ... [详细]
  • 本文整理了 DedeCMS 中常用的标签分类及其具体应用方法,包括标题调用、导航调用、文章列表、子栏目调用、尾部信息调用等。 ... [详细]
  • 一个转子曲线面积问题及其反问题的解答
    曾经解答过这样一个问题,从该ID的最后一次登录时间、该ID显示的专业信息,误以为是新闻里某个想不开的同学,不安了一阵子。经确认是我多虑了,不过把问题答案还是写出来。之后就收到一堆要求帮忙算 ... [详细]
  • vue引入echarts地图的四种方式
    一、vue中引入echart1、安装echarts:npminstallecharts--save2、在main.js文件中引入echarts实例:  Vue.prototype.$echartsecharts3、在需要用到echart图形的vue文件中引入:   importechartsfrom"echarts";4、如果用到map(地图),还 ... [详细]
  • 本文节选自《NLTK基础教程——用NLTK和Python库构建机器学习应用》一书的第1章第1.2节,作者Nitin Hardeniya。本文将带领读者快速了解Python的基础知识,为后续的机器学习应用打下坚实的基础。 ... [详细]
  • 编写SharePoint的EventReceiver需要用到ListTemplateID来进行绑定,下面的列表对于编程和排查错误都是个很好的索引.Listtem ... [详细]
  • DirectShow Filter 开发指南
    本文总结了 DirectShow Filter 的开发经验,重点介绍了 Source Filter、In-Place Transform Filter 和 Render Filter 的实现方法。通过使用 DirectShow 提供的类,可以简化 Filter 的开发过程。 ... [详细]
  • Spring Boot + RabbitMQ 消息确认机制详解
    本文详细介绍如何在 Spring Boot 项目中使用 RabbitMQ 的消息确认机制,包括消息发送确认和消息接收确认,帮助开发者解决在实际操作中可能遇到的问题。 ... [详细]
  • 本文介绍了如何通过 AJAX 发送请求到后端控制器,并将返回的 JSON 数据解析后在前端页面上显示。具体步骤包括发送 AJAX 请求、解析 JSON 字符串和遍历数据。 ... [详细]
  • 开发笔记:前端之前端初识
    开发笔记:前端之前端初识 ... [详细]
  • 本文详细介绍了 Android 开发中常用的单位 dip(设备独立像素)、px(像素)、pt(点)和 sp(可缩放像素),并解释了它们在不同屏幕密度下的应用。 ... [详细]
  • 申请地址:https://developer.apple.com/appstore/contact/?topic=expedite 常见申请理由:1. 我们即将发布新产品,这是一个媒体活动,我们无法承担任何风险,因此在多个方面努力提升应用质量。 ... [详细]
  • Spring 中策略模式的应用:Resource 接口详解
    本文探讨了在 Spring 框架中如何利用 Resource 接口实现资源访问策略。Resource 接口作为资源访问策略的抽象,通过多种实现类支持不同类型的资源访问。 ... [详细]
  • 本文探讨了 TypeScript 中泛型的重要性和应用场景,通过多个实例详细解析了泛型如何提升代码的复用性和类型安全性。 ... [详细]
author-avatar
NarratorWang
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有