Last Search Date format in Search History.csv

General discussion related to "Everything".
Post Reply
rseery
Posts: 1
Joined: Thu Jun 30, 2022 6:03 pm

Last Search Date format in Search History.csv

Post by rseery »

Hello,

If I open Search History.csv using Excel, the Last Search Date is a large number, such as '133009848156294000.00'. Is there an Excel Date/Time format that will display dates such as '06/30/2022 01:44 PM'. I have tried many Custom, Date and Time formats, but none will display a readable date. What does this large number represent?
void
Developer
Posts: 15464
Joined: Fri Oct 16, 2009 11:31 pm

Re: Last Search Date format in Search History.csv

Post by void »

Everything stores dates as FILETIMEs.

To convert a FILETIME to a date in excel, use the following formula:
=((C2-116444736000000000)/864000000000)+DATE(1970,1,1)
where C2 is the cell to convert from a FILETIME to date.

https://stackoverflow.com/questions/42135186/how-to-convert-a-filetime-to-an-excel-date
Post Reply