Created Date Formula for Forms
Comments
-
If the [Created] system column is not displayed, add it.
Then
[email protected] + ""
will show the entire date/time stamp. Note that this is TEXT and not date/time. You'll need to parse out the times to numerically determine response times.
and
in a Date column, will return the date (as a date)
I hope this helps.
Craig
0 -
Exactly what I needed - thank you!
Geneva0 -
I'm glad.
Craig
0 -
To convert to date format: =DATE(VALUE("20" + RIGHT(LEFT(Created1, 8), 2)), VALUE(LEFT(Created1, 2)), VALUE(RIGHT(LEFT(Created1, 5), 2)))
0