Hello All,
Noob here. Trying to group by date in report and it is not working as expected. The date fields include a date/times i.e. 12/23/2006 9:45:00 AM. I can change the date properties to make the data appear as 12/23/2006, but when I group on date, it returns multiple rows showing the same date instead of just one row with the one date. The data is aggregated for the grouping so it seems like it should work properly. Here is an example of what I am trying to do.
Current...
Date Data
12/23/2006 9:45:00 AM 12
12/23/2006 10:00:00 AM 8
12/23/2006 10:15:00 AM 5
Want it to be...
Date Data
12/23/2006 25
Using SQL Server 2000 and RS2000
Thanks,
Clint
Try
=DateValue(Fields!Datetime.Value)
in the Edit / Expression for your Datetime group. I think this should get you what you wanted.
Ham
|||Thank Ham
Would this work if the field is =Fields!DateTimeStamp.Value?
|||Nothing works like trying, yep it worked. thanks so much!|||xtrout,
I glad that is worked for you. Can you mark this answers so that others can view our solution.
Thanks
Ham
No comments:
Post a Comment