Oct 24 2023 04:17 AM
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 into a date?
I already tried Home tab - Number group - Long date/Short date etc which returns ##########...
Thank you
Oct 24 2023 04:35 AM
SolutionIt looks like that's UNIX timestamp in milliseconds. Formula could be
=(A1/86400/1000)+25569
and apply date or datetime format.
Oct 24 2023 04:44 AM
Hi @Jackie321,
you can try these steps:
Step 1: Format the cell containing the number in scientific notation
This will ensure that the number is displayed in a format that can be used by the formula in the next step.
Step 2. In a separate cell, enter the following formula:
=DATE(1970,1,1) + (A1 / 1000 / 86400)
Where A1 is the cell containing the number in scientific notation.
Step 3: Format the cell containing the formula result
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.
If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)
Oct 24 2023 06:10 AM
I guess Step 1 is not necessary
Oct 25 2023 05:52 AM
Oct 25 2023 12:28 PM
@Jackie321 , you are welcome