do I do this in a query? and I just want to make shure this will only display and not replace the orginial data because if I replace the data I will break the whole enterprise LOL
Crystal can't replace data unless the driver allows for it and you go outside of the conventional Crystal GUI for data retrieval and issue a SQL statement to in some way alter data.
Were you to have posted basic technical information, you may have learned that you could use a SQL Expression and have the database return what it is you want, or you might even use Report->Options->Convert null values to default.
Please remember to post meaningful information in future posts:
Crystal version
Database/connectivity used
Example data
Expected output
I got it to work with
If Isnull({WAS_Remote_Proccessing.Last_Date}) or {WAS_Remote_Proccessing.Last_Date}=Date(1899,12,30) then "Never Synced" else totext({WAS_Remote_Proccessing.Last_Date})
in crystal 11 buyt now the normal dates are back displaying as
2/2/2006 12:00:00AM and I dont want the time to show any suggestions?
If Isnull({WAS_Remote_Proccessing.Last_Date}) or {WAS_Remote_Proccessing.Last_Date}=Date(1899,12,30) then "Never Synced" else totext({WAS_Remote_Proccessing.Last_Date},"MM/dd/yyyy")
If you only want one digit per month/day, then change it to "M/d/yyyy".
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.