We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

How to convert bigint value in date format

chinnaupendra07
7 - Meteor

hello guys,

this is Issue i am facing in big-int value i need to convert this value in ''1655251200000'' into date format is there any solution in alteryx

4 REPLIES 4
binuacs
21 - Polaris

@chinnaupendra07 One way of doing this

 

DateTimeAdd('1970-01-01',([date]/1000), 'Seconds')

binuacs_0-1685355000584.png

 

BRRLL99
11 - Bolide

you can try other method

use formula tool 

 

DateTimeParse(ToString([column_name]), "#datetime(1970,1,1,0,0,0)#")

danilang
19 - Altair
19 - Altair

Hi @BRRLL99 

 

Where did you find this particular DateTime format string "#datetime(1970,1,1,0,0,0)#"?  Can you show us an example of it in use?  Maybe a sample workflow?

 

Dan

chinnaupendra07
7 - Meteor

Thank you for the valuable information i get the answer @binuacs 

Labels
Top Solution Authors