I've read the manual and while you can group by date (the whole date) I cannot work out if you can group by month
e.g.
January
Assets with dates in Jan
February
Assets with dates in Feb
etc.
Is it possible ?
cheers
Richard
Create a Metadata field that only has the month value in it and then group by that, perhaps?
I was trying reuse something that Matrix already tracks…should I make this a feature request.
You can use the date attribute as the default value for the metadata field -- except you just isolate the month value (and year, perhaps?)
SO I'd apply metadata to the assets I want with the Month issolated, and then group by month/year ?
Yes, that would be my recommendation.
It works - sort off. Months get listed alphabetically. There does not appear to be away around it…
R
[quote]It works - sort off. Months get listed alphabetically. There does not appear to be away around it… 
R[/quote]
How are you groups being sorted?
I set a metadata item to just have the name of the month and this can only be sorted Asc or Desc.
If you're using the php date format already, you could just prepend the numbers of the month to the field:
m F
If you don't want the number to display, you could try wrapping it in a span, and hiding with HTML:
\<\s\p\a\n\>m\<\/\s\p\a\n\>F
that may fix the sorting, but I haven't tested it.
\<\s\p\a\n\>m\<\/\s\p\a\n\>F
thanks! I will have a play around with that and see how I get on. Although it is not screen-reader friendly.