How to Remove Time from Date/Timestamp in Excel?
Last Updated :
20 May, 2021
Timestamp stores a combined Date and Time value. In this article, we will look at how we can create Timestamp and remove Time from Date in Excel.
To do so follow the steps below:
Step 1: Formatting data to create a timestamp.
Select the cell, right-click on it choose Format Cells...
Step 2: Then in the Formal Cells box select Custom in Category and in the type select dd-mm-yyyy hh:mm, and then click Ok.
Then, we will enter our date with time in the cell.
To remove Time from Date with Format Cells
Step 1: Highlight the cells to remove time from date.
Step 2: Then right-click on it and choose Format Cells...
Step 3:-Then in the Format Cells box select Date in Category and select *14-03-2012 in Type, and then click Ok.
After that time is removed from the date.

To remove Time from Date with Find And Replace Function
Step 1: Highlight the cells to remove time from date.
Step 2: Then, click to Home on the Ribbon. In the Editing group, click Find & Select.
Step 3: In the resulting menu click Replace...
Step 4: Then in Find and Replace box enter the space bar and * in Find what box and leave a blank in Replace with box, then click Replace All.
After that time is removed from the date.

To remove Time From Date With VBA Code
Step 1: Highlight the cells to remove time from date.
Step 2: Press Alt + F11 then a Microsoft Visual Basic for Applications window will be displayed and then click Insert.
Step 3: Then in the resulting menu click Module.
Step 4: In the Module write the following code.
Step 5: Then, click on the red marked button as shown below to run the code.
Step 6: In the KutoolsforExcel box select the range from which we want to remove time and then click Ok.
After that time is removed from the date.

To remove Time From Date With Kutools For Excel's Remove Time From Date Function
Step 1: Visit on the given link below to install Kutools for Excel
https://www.extendoffice.com/download/kutools-for-excel.html
Step 2: Then, click to Kutools on the Ribbon. In the Formula group, click Formula Helper.
Step 3: In the resulting menu click Formula Helper...
Step 4:- In the Formulas Helper box select Date in Formula Type then choose Remove time from data in choose a formula box then select the range from which we want to remove date in Date time box and then click Ok.
After that time is removed from the date.
Similar Reads
How to Extract Date From a TimeStamp in PostgreSQL PostgreSQL is a powerful open-source relational database management system (RDBMS). PostgreSQL is well-known for its feature-rich capabilities, standardization, and adaptability. It supports a variety of data types, complex SQL queries, and ACID properties. PostgreSQL offers scalability and durabili
4 min read
How to Remove Times from Dates in SQL Server In SQL Server, there are Date and DateTime data types to store Date and Time values. There can be situations when only the date value needs to be displayed or to do date calculations for date add, date difference functions, and between two dates from datetime values. So, to remove the Time part from
4 min read
How to Remove Time From Date with Moment.js? Moment.js is a widely used JavaScript library for managing and manipulating dates and times. It simplifies complex date operations and makes it easier to work with dates in a consistent format. One common task is to extract just the date portion from a full timestamp, ignoring the time part. This is
2 min read
How to add timestamp to excel file in Python In this article, we will discuss how to add a timestamp to an excel file using Python. Modules requireddatetime: This module helps us to work with dates and times in Python.pip install datetimeopenpyxl: It is a Python library used for reading and writing Excel files.pip install openpyxltime: This mo
2 min read
How to Remove Spaces in Excel Have you ever wondered you keep searching data on Excel but it is not returning any values and many times you are trying to add columns or data but you are unable to do so? Well, these are some common problems we all have faced in our life. But do you know why it happens? This happens because of ext
8 min read
How to Automatically Insert Date and Timestamp in Excel? The Date and Timestamp is a type of data type that determines the date and time of a particular region. It contains some characters along with some encoded data. This format may vary from language to language. Keeping track of date and time helps in managing records of our work as well as segregate
4 min read