Data-Forums Data-ForumsAI · data · automation · Gaming
Create an account

New here? Join Data-Forums — ask questions, share builds & trade smarter with us.Sign up freeLog in×

Thread

How do I convert Unix timestamps to readable dates in a spreadsheet?

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
2 total views  ·  2 guest views

#1
Excel and Google Sheets treat dates as serial numbers, so a raw Unix timestamp looks like gibberish. Convert with:

Google Sheets:
Code:
=A2/86400 + DATE(1970,1,1)
then format the cell as date/time. (86400 = seconds in a day.)

Excel: same formula, but watch the timezone – Excel uses your local offset:
Code:
=(A2/86400) + DATE(1970,1,1)
If your data is UTC and your sheet is local, add the offset explicitly.

Milliseconds? Divide by 1000 first.

Pro tip: keep the raw timestamp column and the formatted one side by side – you'll thank yourself later.

Do you mostly deal with seconds or millisecond timestamps?
Reply

Users browsing this thread:
1 Guest(s)

Forum Jump:
Join AI builders shipping real tools. No hype, no guru courses — just post-mortems, prompts, and people who build.

The community for AI engineers, automation builders, prompt crafters, cybersecurity folks & data practitioners. Talk about what ships — not what trends.

18k+
Posts
1.8k
Threads
112+
Members
Online
© 2026 Data-Forums · Built with by Sir-VIGU