web-dev-qa-db-ja.com

Excelのセルの日付と時刻のマージ

Excel 2013の列の日付(2016-01-01)と列の時間(16:00:00)のセルを結合したい

取得するセルをフォーマットする方法2016-01-01 16:00:00

これが私の例です https://postimg.org/image/clxeqb66h/

42677 16:00:00

8
Pointer

これを実現するには、TEXT関数を使用します。

日付がA1セルにある限り。

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

=TEXT(A1;"HH:MM:SS")
4
  • [〜#〜] add [〜#〜]2つの値

    • 日付と時刻は、1900年1月1日以降の日数とその日の小数部としてExcelに保存されます。日付と時刻を組み合わせるには、それらを追加します

    • 結果をyyyy-mm-dd hh:mm:ssとしてフォーマットします

enter image description here

16
Ron Rosenfeld

日付列と時刻列を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

1
Waruna Manjula