Re: Last Search Date format in Search History.csv

General discussion related to "Everything".
Post Reply
void
Developer
Posts: 15352
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.

FILETIMEs are in UTC.

https://stackoverflow.com/questions/42135186/how-to-convert-a-filetime-to-an-excel-date
NotNull
Posts: 5261
Joined: Wed May 24, 2017 9:22 pm

Re: Last Search Date format in Search History.csv

Post by NotNull »

Alternative:

Code: Select all

=C2 / ( 8,64 * 100000000000 ) - 109205
Post Reply