GregCotten
Programmer
I had a problem this morning with Crystal Reports 8.5 running a JDE report going through the ODA driver. The particular field had null dates and was displaying as 12/31/1899. I checked the check box in Report/Options for Null fields with no avail. What I had to do was create a formula that changed the Date field to text and check it for the date. If it had the date then print a " ", else print the date. If you run into this problem use the following:
If ToText(Date):= "12/31/1899" then " " else (Date)
If ToText(Date):= "12/31/1899" then " " else (Date)