lawsonreports
Technical User
I have a date field that occasionally has a SQL server default value of 01/01/1753 in it (no nulls allowed, yet the application does not require the date to be entered!). I want to show this value as blank on a report. After I had no success figuring out a Crystal syntax formula, a co-worker provided this Basic syntax for my formula, and it works. So my question is - can this be done in the Crystal syntax? I was trying to use the IIF , and I got no where.
Here is the Basic code that works:
If {VBPTENTLI.VB_END_DT_LI} = #1/1/1753# Then
Formula = True
Else
Formula = False
End if
Here is the Basic code that works:
If {VBPTENTLI.VB_END_DT_LI} = #1/1/1753# Then
Formula = True
Else
Formula = False
End if