I'm using CR2008 with an Oracle db as a data source. I have a number of date fields to display, and the format to be used is 01-Jan-2011. Because some dates were missing in migrated data, bogus dates were used to populate some records (ex 01-Jan-1111). The requirement is for any bogus date to be replaced with a text phrase (ex. if it's a dispatch date, the text should read "Dispatched" rather than showing the 01-JAn-1111). I changed the field format to text in order to use an if-then formula to replace the bogus dates with text (If @Dispatch Date = 01-Jan-1111 then "Dispatched" else @Dispatch Date). The formula works and the date format is correct when viewing in Crystal. When I export to Infoview, the dates are appearing dd/mm/yyyy rather than dd-Mon-yyyy. I assume I'm losing the formatting because I've changesd the date field to text. How do I retain my date formatting in Infoview??