Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello dear community,
I have a date field format timestamp. How to convert it into Date 'DD/MM/YYYY' I need to convert it in the script.
Thanks for your help.
Hi,
you can just use Date( "your date field" )
Example:
=date(ReloadTime())
Regards,
Marouen
Check these link out to convert Unix date to date:
IT Walk Thru: QlikView Expression for Converting Unix int Epoch Dates to date
Here is a link from outside QlikView where you would see what your date corresponds to:
Hi
What's your expected result
from timestamp into date 'DD/MM/YYYY'
Hi Marouen,
Please see the result when I did as you recommended
in the script : Date(LASTUPDATE) AS Date_Balance
Any suggestion please?
What would 406735040 correspond to in date?
Is this right?
pls try this
load *,
date(left(aa,5),'DD-MMM-YYYY') as date,
time(num('0.'&right(aa,4)),'hh:mm:ss') as time;
load * inline [aa
406735040
406735055];