This will convert an ISO 8601 date such as: 2018-03-19T10:18:08.137747874Z
to a timestamp with milliseconds resolution: 1521454688137,00
Please note that the decimal part (,00
) can be stripped away, milliseconds are the last three digits.
=(((DATEVALUE(LEFT(A1;10))+TIMEVALUE(MID(A1;12;8)))-DATE(1970;1;1))*86400000)+VALUE(MID(A1;FIND(".";A1)+1;3))
Replace A1
with the actual column name.
@edwardaux @andreaskueffel thank you for providing the localized versions.