SharePoint

How to Show Date and Time in the Created Column of a SharePoint List

#SharePoint#Power Platform#Lists#Created Column#Date Time
How to Show Date and Time in the Created Column of a SharePoint List

How to Show Date and Time in the Created Column of a SharePoint List

In short: SharePoint shows only the date in a list's Created column by default. To display the time as well, create a calculated column that reformats the Created value, for example =TEXT(Created,"dd/mm/yyyy hh:mm"), and return it as a single line of text. It takes about two minutes in List Settings.


When you create a new SharePoint list, a “Created” column is automatically generated. This column stores the date and time when each item was created/added to the list. However, by default, SharePoint displays the date, leaving out the time.

If your use case requires showing both the date and time, or if you want to customize the format of the “Created” column, SharePoint doesn’t allow you to directly edit columns like “Created.” But there’s a simple workaround.

You can create a calculated column and reformat the “Created” value into a new column that displays the exact date and time in the format you need.

How do you show both date and time in the Created column?

  1. Create a Calculated Column by navigating to the List Settings in your SharePoint list.

A SharePoint list page showing the list setting button at the right side of the screen

  1. Scroll down and click on Create column.


Create Column

  1. Configure the Calculated Column:
- Give your new column a name. In my case, I'm calling it "Date Created." - For "The type of information in this column is," choose Calculated - Under Insert Column, select the Created column from the list - In the formula text bar, enter the following formula:

=TEXT(Created,"dd/mm/yyyy hh:mm")

This formula will display the date and time in the format: 30/11/2025 14:30

testing

  1. Finalize the Column:
- Under "The data type returned from this formula is," select Single line of text - Scroll down and click OK to save your changes - Your "Date Created" column should now display both the date and time from the original Created column

The SharePoint list showing the updated Created Column

Formatted timestamps are a small detail that makes a big difference, they are what keeps something like a payment approval audit trail readable at a glance. And SharePoint lists can do far more than store data: here is how they power automated crew assignment and job dispatch.


Thank you for reading!!!

---

What did you think of this post? Let me know on Twitter or LinkedIn!


If you'd like help building something like this for your team, get in touch.

Rachel Irabor, Microsoft MVP and Power Platform & Dynamics 365 CRM Technical Consultant
Rachel Irabor

Microsoft MVP | Power Platform & Dynamics 365 CRM Technical Consultant

Frequently asked questions

Can you edit the Created column directly?

No, Created is a system column that SharePoint maintains automatically, so it cannot be edited or reformatted directly. The workaround is a calculated column that reads the Created value and displays it in whatever format you need, without touching the original.

Can I change the date format in the formula?

Yes. The TEXT function accepts any format string, =TEXT(Created,"mm/dd/yyyy hh:mm") for US-style dates, or "dd-mmm-yyyy" for 30-Nov-2025. Adjust the pattern to match how your team reads dates; the underlying Created value stays untouched.

Will this work for items already in the list?

Yes. A calculated column evaluates against every item in the list, existing and new, as soon as you create it. You do not need to update old items, the formatted date and time appear for the full history immediately.

Does the same trick work for the Modified column?

It does. Create another calculated column with =TEXT(Modified,"dd/mm/yyyy hh:mm") to show when each item was last changed. The pair together gives you a simple, readable audit of when items were created and last touched.

Questions or thoughts? Leave a comment

Comments are moderated, your comment will appear after approval.