views:

713

answers:

2

Hello,

I'd like to format a datetime in Crystal Reports to a include the day of week.

From:

19/06/2009

To:

Friday, June 19, 2009

Thanks,

+2  A: 

In Crystal Reports XI Release 2 you can right click on the field and go to Format Field. On the "Date and Time" tab click the customize button. Under the Date Tab change the Date Type drop down to "Windows Default Long".

Dusty
Is there anyway to implement this formatting in a formula? IE: I have two database fields that I want to combine into one Crystal Reports field.
Nathan Koop
I put another answer on here for this question to help other people with this same issue since (if people are like me) they generally don't really read the comments. If you want to do that you can just concatenate two functions similar to the second answer together in a formula field.
Dusty
+2  A: 

If in a formula, you can use the following.

CSTR({?@end_dt}, "dddd, MMMM d, yyyy")

Dusty