in July 2009, Turkbear responded to a issue concerning null date export. I tried this solution on a Progress database to Crystal report and crystal returned
"12/31/-4714" as the date.
Mr. Turkbear, if you are listening, any suggestions for Progress Databases.
Thank you - your advice is always appreciated.
Turkbear (TechnicalUser) 29 Jul 09 15:14
In your report,create a formula to use in place of the actual date field:
@DateForm
CODE
If IsNull({DateField}) Then
""
Else
ToText({DateField},'MM/dd/yyyy') //Case sensitive
"12/31/-4714" as the date.
Mr. Turkbear, if you are listening, any suggestions for Progress Databases.
Thank you - your advice is always appreciated.
Turkbear (TechnicalUser) 29 Jul 09 15:14
In your report,create a formula to use in place of the actual date field:
@DateForm
CODE
If IsNull({DateField}) Then
""
Else
ToText({DateField},'MM/dd/yyyy') //Case sensitive