We are trying to extract data from a SQL database that has been written by Clarion. The clarion date is in a number format (76431) and we have a formula to convert it for printing on the crystal report. However we need to use a date parameter to select certain data from the database and this parameter presents the data to us in the Clarion format (eg 76431). How can we convert that date so it is displayed to the user in the date parameter in a normal date format.
The formula we are using to convert the dates is:
If {Spares.DATE_RECD} > 0 Then
Date (1800,12 ,28 ) + {Spares.DATE_RECD}
The formula we are using to convert the dates is:
If {Spares.DATE_RECD} > 0 Then
Date (1800,12 ,28 ) + {Spares.DATE_RECD}