BAAAM tool export date format | Community
Skip to main content
New Participant
June 23, 2021
Solved

BAAAM tool export date format

  • June 23, 2021
  • 2 replies
  • 1605 views

Hi, am trying to read the created and update date fields on the BAAAM export from AAM but the data which is available can't be transformed into any dates which Excel recognises, anyone know how to convert it? Thx

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by rich_seabrook

I use the formula below (and then format that cell as a date)

 

=A2/(86400000)+DATE(1970,1,1) 

 

(where A2 contains the UNIX timestamp you are trying to convert)

 

 

2 replies

rich_seabrookAccepted solution
New Participant
August 18, 2021

I use the formula below (and then format that cell as a date)

 

=A2/(86400000)+DATE(1970,1,1) 

 

(where A2 contains the UNIX timestamp you are trying to convert)

 

 

New Participant
July 14, 2021

Hi @richlodge5 

 

Here is the BAAAM Date formula: =((A2/1000)/86400)+(DATEVALUE("1-1-1970")-DATEVALUE("1-1-1900"))

Make sure you replace the 'A2' to reference the the date cell you are trying to change. Also make sure that the raw (reference) date column (in this example 'A2') is formatted as general

The new date column will need to be formatted as 'Custom' and then you should make it: m:dd:yyyy AM/PM.  

 

It can get a bit wonky sometimes so if anyone else has a better way please share.

 

Thanks,

Manny