I have a Date field that has a numerical value stored in seconds. I want to convert this value using the dateadd() function, but I am receiving a compile error. Here is the code that I am putting into a query field:
DateAdd("s",[test],"31-Jan-70")
Note: the field test is another field in the query that contains the value, 1050088344.
MS Access version 2003 sp1.
Any help is greatly appreciated.
Thanks in advance.
Joel
/////////////////////////
Here is a formula that I got to work within Crystal Reports: DateAdd('s', {ticket.date_closed}, DateTime(1970, 01, 01, 00,00,10))
/////////////////////////
DateAdd("s",[test],"31-Jan-70")
Note: the field test is another field in the query that contains the value, 1050088344.
MS Access version 2003 sp1.
Any help is greatly appreciated.
Thanks in advance.
Joel
/////////////////////////
Here is a formula that I got to work within Crystal Reports: DateAdd('s', {ticket.date_closed}, DateTime(1970, 01, 01, 00,00,10))
/////////////////////////