What is the formula for calculated field to calculate the milliseconds of the field “Created” in SharePoint 2007

sharepoint.stackexchange https://sharepoint.stackexchange.com//questions/22969

  •  06-12-2019
  •  | 
  •  

Question

In SharePoint 2007 List, there is a field (or column) called "Created". It contain the date in which a item is created.

I want to create any field, a calculated field, to help me calculate the milliseconds of the date in the "Created" field.

Any Ideas?

Additional Information

For example: 10/10/2010 10:11:12:80 will return the value 80 as the millisecond. If I =MINUTE[Created], it will return the value 11 as the minute. (In this case, I am looking for the millisecond.)

Was it helpful?

Solution 2

To conclude this question: There is no way to retrieve the millisecond from SharePoint 2007 as discussed with Christophe.

OTHER TIPS

SharePoint expresses dates in days.

Multiply by 24 to express it in hours, then by 3600 to express it in seconds, then by 1000 to express it in milliseconds:

[Created]*24*3600*1000

If you only want to eep the milliseconds, try this:

([Created]*24*3600-INT([Created]*24*3600))*1000

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top