
Partner - Creator II
2017-10-19
06:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Remove Timestamp
Hello,
I am trying to remove the timestamp on a date field. The date values are formatted as 2017-02-23T00:00:00.
I tried the following functions to remove the timestamp but, they all did not work.
- Date(Floor(Date),'YYYY-MM-DD) As Date
- Date(Date#(Left(Date,10),'YYYY-MM-DDT00:00:00'),'YYYY-MM-DD') As Date
- Date(SubField(Date,' ',1)) As Date
Does anyone have suggestions as to how I can remove the timestamp?
Thank you in advance for any assistance!
3,925 Views
1 Solution
Accepted Solutions


Creator II
2017-10-19
07:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
FLOOR(<datefield>) AS Date
You can format that field, in the UI, to MM/DD/YYYY. Or whatever format you need.
3,750 Views
2 Replies


Creator II
2017-10-19
07:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
FLOOR(<datefield>) AS Date
You can format that field, in the UI, to MM/DD/YYYY. Or whatever format you need.
3,751 Views

Partner - Creator II
2017-10-19
07:30 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you Michael!
