Hi all..
I have a problem here.
I need to print out reports, whereby one of the date field may be empty.
I need it such that if that date field is null or (30/12/1988) which is the null date by CR, then leave the date field empty in the report...
I tried doing this under the Record selection formula for that date field:
if {table.date} <> CDate(1988,12,30) then
totext({table.date})
else
""
but it tells me "This field name is not known" with the error pointing to ""
then i tried this method:
if {table.date} <> CDate(1988,12,30) then
{table.date}
else
cdate(0,0,0)
and it does not work also..
Can someone pls advise me...
Thanks!
I have a problem here.
I need to print out reports, whereby one of the date field may be empty.
I need it such that if that date field is null or (30/12/1988) which is the null date by CR, then leave the date field empty in the report...
I tried doing this under the Record selection formula for that date field:
if {table.date} <> CDate(1988,12,30) then
totext({table.date})
else
""
but it tells me "This field name is not known" with the error pointing to ""
then i tried this method:
if {table.date} <> CDate(1988,12,30) then
{table.date}
else
cdate(0,0,0)
and it does not work also..
Can someone pls advise me...
Thanks!