I am trying to make a smartlist that will find all album artists that have released more than one album in the same year. Any help would be appreciated.
OK, I think I got it now after much testing:
~nodup=[Album],[Album Artist] ~sort=[Album] ~dup=[Album Artist],[Date] ~a
The idea is to enter the full release date for those albums to get them to sort correctly. Any idea how I best can save the full date in the actual file tags when using ID3v2.3?
I think I will use this expression to search for all albums with a more precise Date value than only the year in the MC (for albums released on an unknown date in January I am planning to use 0110 and not 0101):
-[Date (filename friendly)]="0101" -[Date]=[]
Then I think I will create a custom MC field, written to the ID3v2.3 file tags as a TXXX field, named Exact Date, or something like that, and populate that field for those albums by using this Excel like expression:
=[Date]
Any thoughts/recommendations regarding that?
(As far as I have been able to test, and search through the forums, it seems that the ID3v2.3 tag TDAT designated for this purpose is not supported by MC, which uses a JR/Date TXXX tag to store its internal date number. If someone could confirm that MC is actually capable of populating the Date MC field with the full date, i.e. 2009-12-10 for example, when importing a file with both a TYER tag of only 2009 and the TXXX JR/Date tag with the MC internal date number, which I am not able to decipher into a real date, I might consider skipping the step of manually setting a special field/tag for the full date in combination with a smartlist to check from time to time that the content of the Date and Exact Date fields is still the same. I want to be able to restore from the file tags all data I enter into MC in a human readable form. I guess an option to store the full date from the MC Date field in the TYER tag is out of the question for compatibility/compliance reasons...)