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
Re: Last Search Date format in Search History.csv
-
void
- Developer
- Posts: 19899
- Joined: Fri Oct 16, 2009 11:31 pm
-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Re: Last Search Date format in Search History.csv
Alternative:
Code: Select all
=C2 / ( 8,64 * 100000000000 ) - 109205