I am using CR 10
I have data (field in SQL - {AccountMore.GroupJoinDate}), when browsed in Crystal it says its a date but isnt! It holds as a number and the start date in system is 31st Dec 1961
So I use date(1961,12,31)+{AccountMore.GroupJoinDate} and format it to get nice dtaes eg 15-Aug-1999
But if no date held in system it holds it as 0 So how can I suppress if 0. I tried:
If {AccountMore.GroupJoinDate} = 0 then "" else
date(1961,12,31)+{AccountMore.GroupJoinDate}
but it doesnt like it and says string required as I mixing types
I have data (field in SQL - {AccountMore.GroupJoinDate}), when browsed in Crystal it says its a date but isnt! It holds as a number and the start date in system is 31st Dec 1961
So I use date(1961,12,31)+{AccountMore.GroupJoinDate} and format it to get nice dtaes eg 15-Aug-1999
But if no date held in system it holds it as 0 So how can I suppress if 0. I tried:
If {AccountMore.GroupJoinDate} = 0 then "" else
date(1961,12,31)+{AccountMore.GroupJoinDate}
but it doesnt like it and says string required as I mixing types