Excel合并单元格日期和时间

时间:2016-12-15 11:51:23

标签: excel datetime ms-office

我想在Excel 2013列日期(2016-01-01)和列时间(16:00:00)合并单元格,

如何格式化细胞以获得 2016-01-01 16:00:00

以下是我的示例https://postimg.org/image/clxeqb66h/

我得到42677 16:00:00

3 个答案:

答案 0 :(得分:12)

  • 添加这两个值

    • 日期和时间存储在Excel中,作为自1900年1月1日以来的天数和当天的一小部分时间。因此,要结合日期和时间,您可以添加它们

    • 将结果格式化为yyyy-mm-dd hh:mm:ss

enter image description here

答案 1 :(得分:2)

您可以使用TEXT功能实现此目的。

只要日期在A1单元格上..

=TEXT(A1;"YYYY-MM-DD") 

=TEXT(A1;"HH:MM:SS")

答案 2 :(得分:1)

有一个非常简单的公式,可以快速帮助您将日期列和时间列合并为一个。

  

键入此公式 = TEXT(A2,“ m / dd / yy”)&TEXT(B2,“ hh:mm:ss”)

A2 indicates the first data in date column, 
B2 stands the first data in time column, 
you can change them as you need) into a blank cell, 
and press Enter key, 
then drag the fill handle to fill the range you want to use this formula. 
See screenshot:

enter image description here

更多:https://www.extendoffice.com/documents/excel/1538-excel-combine-date-and-time.html