Reputation: 401
I have a date column. I created Month-Year column in my report using the following expression, but I am not able to sort month-year wise.
=MonthName(Month(Fields!new_sitevisiteddateutc.Value))& "-"& Year(Fields!new_sitevisiteddateutc.Value)
I would like to have MAY-2009 JUNE-2009 JANUARY-2011 MARCH-2011
, however I am getting JUNE-2009 MARCH-2011 MAY-2009 JANUARY-2011
.
Can someone help me with this?
Upvotes: 1
Views: 2895
Reputation: 8877
In the table properties you can add multiple sorting fields and thier order.
Sort by year first and then month.
Upvotes: 3