My client receives a spreadsheet with a number of columns, one being a “date”. Only the date turns out to be formatted as Date(1292291582263-0700) (a JSON date it seems).
I need to convert and work with this JSON date in MM/DD/YYYY format, elsewhere in this spreadsheet’s code (VBA).
Does anyone know how to parse and convert this JSON date format into a MM/DD/YYYY format? I have read lots of solutions on SO that are in Javascript, C#, or ASP.NET, etc but all I have to work with is Excel 2010 and VBA code for this project. Is there way to arrive at a readable format as I need?
Millisecond Epoch time with a +/- offset?