my database stores the date as 01/01/1990 if no date is entered on data entry.
when i am reporting on this information the date field shows 01/01/1990 if no date was entered. I want to create a formula that will display "n/a" or just and empty string if the date is equal to 01/01/1990 or display the date if it is not 01/01/1990.
i wrote a formula like this:
if {tblAccidentTrackIT_Data_Accident.strDateLastJSA} = 01/01/1990
then ""
else
{tblAccidentTrackIT_Data_Accident.strDateLastJSA}
but i get the error a date is expected here and i think that is because i am entering a string in the then part and a date in the else part of the expression. i would really appreciate help with this. using crystal 10
thanks and regards
when i am reporting on this information the date field shows 01/01/1990 if no date was entered. I want to create a formula that will display "n/a" or just and empty string if the date is equal to 01/01/1990 or display the date if it is not 01/01/1990.
i wrote a formula like this:
if {tblAccidentTrackIT_Data_Accident.strDateLastJSA} = 01/01/1990
then ""
else
{tblAccidentTrackIT_Data_Accident.strDateLastJSA}
but i get the error a date is expected here and i think that is because i am entering a string in the then part and a date in the else part of the expression. i would really appreciate help with this. using crystal 10
thanks and regards