Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jewelfire
Starting Member
4 Posts |
Posted - 2007-01-29 : 21:36:20
|
hey thereUsing Reporting Services 2005I have a date time fieldFields!CreatedDate.Value which I am grouping on and Counting on an ID Field result of grouping is this7/13/2006 12:00:00 AM 17/21/2006 12:00:00 AM 118/7/2006 12:00:00 AM 38/8/2006 12:00:00 AM 2I know if I put (Month(Fields!CreatedDate.Value)I get this result7 17 118 38 2What I really want isJuly 12August 5how do I do this pleasethanks |
|
jhermiz
3564 Posts |
Posted - 2007-02-07 : 12:10:56
|
quote: Originally posted by jewelfire hey thereUsing Reporting Services 2005I have a date time fieldFields!CreatedDate.Value which I am grouping on and Counting on an ID Field result of grouping is this7/13/2006 12:00:00 AM 17/21/2006 12:00:00 AM 118/7/2006 12:00:00 AM 38/8/2006 12:00:00 AM 2I know if I put (Month(Fields!CreatedDate.Value)I get this result7 17 118 38 2What I really want isJuly 12August 5how do I do this pleasethanks
Use the FORMAT functionExample:=Format(MyDate, "dd-MMM-yy") Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]RS Blog -- [url]http://weblogs.sqlteam.com/jhermiz[/url] |
 |
|
|
|
|