Forum Discussion
Jackie321
Oct 24, 2023Copper Contributor
convert numbers in scientific (exponential) notation into date format
Hi there, i have a data set which shows all dates and time values as numbers in scientific (exponential) notation. (1692749193000 = 169275E+12) Which steps do I need to take to convert these in...
- Oct 24, 2023
It looks like that's UNIX timestamp in milliseconds. Formula could be
=(A1/86400/1000)+25569
and apply date or datetime format.
SergeiBaklan
Oct 24, 2023Diamond Contributor
It looks like that's UNIX timestamp in milliseconds. Formula could be
=(A1/86400/1000)+25569
and apply date or datetime format.
- Jackie321Oct 25, 2023Copper ContributorThank you, Sergei. Above formula worked.
- SergeiBaklanOct 25, 2023Diamond Contributor
Jackie321 , you are welcome