Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How to convert the date time stamp to date.
Please find below for reference:
Thanks..
You could use: date(floor(UPLIST_DATE))
- Marcus
Hi Marcus,
I have convert using date(floor(UPLIST_DATE)) but the dates are not selected correctly.
Please find below for reference.
Thanks..
Are there further selections in other fields?
- Marcus
This should work, dI'd you have any other selections when taking this screenshot?
ADD AN EXPRESSION TO uplist _date list box
Isnum (uplist_date) and check if these are properdates
May have extra spaces or garbage character that we'll need to trim
Dear,
You can use alt function to get desired date format,
alt(
date#(DATE_FIELD,'MM/DD/YYYY'),
) AS date
Date(Floor(TimeStamp#(UPLIST_DATE,'M/D/YYYY h:mm:ss tt'))) as Date
Time(Frac(TimeStamp#(UPLIST_DATE,'M/D/YYYY h:mm:ss tt'))) as Time
DayName(UPLIST_DATE) as Date
Hope this helps
Regards
Marco