Technology seems to run on epoch, and that’s fine unless you need a quick and dirty way to get a date – especially in windows. Working with epoch dates, sometimes feels like decoding the matrix. I had a report that had a ton of epoch and I needed to convert to real dates – not too hard in perl or shell or etc… but I’m in Excel on Windows and I didn’t really want to run it through a filter so here’s the equation…

((epoch – timezone adjustment) / seconds in a day) + (days between 1/1/1900 and 1/1/1970)

It looks a little more like this in Excel: (for MST anyway)

=((date – 25200) / 86400) + 25569

I really don’t understand why Excel has to be different, It would be great if I could have just formatted the column as a date – oh well, at least it wasn’t too hard to figure out.
-Peter