Forum Discussion
BMur2025
Apr 25, 2021Copper Contributor
Covert Milliseconds to Date/Time in excel
How do I convert milliseconds (e.g. 1613808000000) to Date/Time format? Thanks in advance
- Apr 25, 2021
Is this a Unix timestamp? If so, with such a value in A1, enter the following formula in B1:
=A1/86400000+25569
and format B1 as a date+time.
ā
HansVogelaar
Apr 25, 2021MVP
Is this a Unix timestamp? If so, with such a value in A1, enter the following formula in B1:
=A1/86400000+25569
and format B1 as a date+time.
ā
BMur2025
Apr 25, 2021Copper Contributor
Perfect, thank you.