I have received a link to some data with dates in a text column stored as 13-digit numbers in a SHORT TEXT field. I want to display these as dates in an MS Access 2016 database table. The field I want to append them to is a date formatted field.
The dates are in this format (they should all be recent dates):
1533268800000, 1533697200000, 1533783600000, 1534129200000, 1534129200000
Does anyone know how I could convert these strings to dates formatted as this format "25/04/2018 16:13:46"? I've tried some advice from this site, but, nothing has worked in Access so far.
This is my current query, but, it gives me the wrong date in Access, but, the right date in Excel:
UPDATE SH_Interviews_Data
INNER JOIN SH_Data_addition
ON SH_Interviews_Data.sel_nombre = SH_Data_addition.id_nombre
SET SH_Data_addition.cargo = [SH_Interviews_Data].[cargo],
SH_Data_addition.ultimo_contac1 = [SH_Interviews_Data].[fecha_entrev]/86400000+TimeValue("1970-01-01") ;
Thanks in advance.