
Not applicable
2017-03-06
02:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can I extract Date and Time from Timestamp?
Hello,
Attached is the format of the data in Excel:
I need to Extract Date and Time as separate fields.
I used this:
Timestamp("Changed Time Stamp",'D/MM/YYYY hh:mm:ss TT')
But am still not able to pull out date separately.
What can I use to get Date as its own and Time as its own?
25,394 Views
1 Solution
Accepted Solutions

MVP
2017-03-06
03:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this:
Date(Floor([Changed Time Stamp])) as Date,
Time(Frac([Changed Time Stamp])) as Time
3 Replies

MVP
2017-03-06
03:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this:
Date(Floor([Changed Time Stamp])) as Date,
Time(Frac([Changed Time Stamp])) as Time


MVP
2017-03-06
03:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
For more information, have a look at
(applies also to timestamps)

Creator II
2020-02-27
09:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Correct Answer
I have executed
17,374 Views
