How to get date and current time from a Date / Time column in a SharePoint list

I have a column called "Date Submitted" as a date / time in one of the user list in sharepoint 2007. It is always set to date at 12 a.m. and not that I want to display today the date with the current time hh: mm : ss.

I tried to create a calculated column TestDate, and the formula: = TEXT (([Date Submitted]), "mm dd yyyy h: MM: SS")

result 04 28 2010 0:00:00 I wanted to be 04/28/2010 10:50:34

Can this be achieved?

Thanks. edging

+6
list sharepoint
source share
6 answers

try putting = NOW () in the default field in the column properties

+9
source share

In the definition of Date Submitted, is Date and Time Format Date Date only? If so, try changing it to a date and time.

+1
source share

A few ideas to get you started: -

0
source share

For something like this, I ended up creating a custom action that gets called from a workflow.

0
source share

= TEXT ([DateFiled Here], "mm / dd / YYYY hh: mm: ss")

0
source share

Here's how to do what you want:

=TEXT(Today,"mm/dd/YYYY")&" "&TEXT(Now(),"h:mm:ss") 
0
source share

All Articles