How to Combine Date and Time in Excel

puneet-gogia-excel-champs-09-06-23

- by Puneet

Excel stores a date as a number and time as a decimal. You can combine both date and time if you want and show both in a single cell.

combine-date-and-time

In this tutorial, you are going to learn two easy-to-follow methods:

  • Use Ampersand to Combine Data and Time.
  • Using the TEXT function to concatenate both.

Addition to Combine Date and Time in a Single Cell

As I said, in Excel, a date is an integer and time is a decimal. When you combine both in a single cell they become a real number and after that, you just need to apply the format of date and time on the cell.

combine-date-and-time-in-a-cell
  1. First, edit the cell and enter “=” in it.
  2. After that, refer to the cell with the date (A2).
  3. Next, enter the addition sign.
  4. Now, refer to the cell with time (B2).
  5. In the end, hit enter to get the combined date and time.
date-and-time-value-in-a-cell

The moment you hit enter, you will get a date and time value in the cell, just like the one we have in the above example. You can see you have a custom format in the formatting dropdown.

This is because you have the date and time combined in a single cell and Excel has applied a custom formatting for this. And if you open the format option dialog box, you can see that custom formatting is there.

custom-formatting

TEXT Function to Concatenate Date and Time

To combine date and time you need to use the text function twice with the CONCAT:

  1. In the first part, you need to refer to the cell with the date and specify the format that you want.
  2. And in the second part, you need to refer to the time and specify the format that you want.
  3. In the third part, you need to use CONCAT to combine both with a space in between.
text-function-to-combine-date-and-time
=TEXT(A2,"DD-MMM-YYYY")&" "&TEXT(B2,"HH:MM:SS")
text-function-with-concat

When you use CONCAT, you need to specify the values in the arguments, that you want to combine. And you have the three values to combine here.

  1. The first text function is to get the date and apply a format.
  2. A space in between
  3. The second text function is to get the time value and apply a format.

And if you want to have a different format for the date and time, you can change it from the function.

apply-text-and-concat-function-together

Get the Excel File