In a dataset I have a string field that holds a date like ‘2016-07-01 21:15’, but I would like to show it as a full date in words in the apperance without converting/changing the orginal value. Can I do this somehow?
I found something like DATE_FORMAT, but I don’t know how and if it wil work.
(I works when I make it a formula in the dataset, but I need the date formatted in several parts elsewhere, once the day only, once only the time, etc.)
mm I think that you would need to have separate formula column for this (different formulas for different output).
So lets say your column with date is called 'Date’
and in this column you have a following value: 2016-07-04 14:55:00
then you can have a formula column called ‘Formula’ with this in formula field (as an example): DATE_FORMAT(Date,'%b %d %Y %h:%i %p')
Then in ticker appearance tab you would double click the ‘Formula’ to show it on the layout and it will take the date from your Date column and ‘convert’ it and display this on the layout: (in this example:) Jul 04 2016 02:55 PM
Thank you for your reply and that works fine, but now I have a final question:
No matter what I try, the transformed date into words keeps translated in English in stead of any other language.
Is there some dependency I seem to forget??
So in short can I translate the result of DATE_FORMAT(dtEventStart, ‘%W %d %M %Y’) into French, Dutch, etc.?