Hi,
After adding many more albums to my library I'm having some problems with sorting. I'm trying to get the following in Albums view:
first view all "Classical", then all "Jazz" and then all the rest. Inside "Classical" sort by "Composer" while the rest is sorted by "Artist"
For that I used the following rules, in the given order:
Classical First: If(IsEqual([Genre], Classical,1), 0,1)
Jazz First: If(IsEqual([Genre],Jazz,1),0,1)
Album Sort: If(IsEqual([Genre], Classical,1), [Composer], [Artist])
this work MOST of the time. after adding a considerable number of albums to the library the sort, which was fine before the addition, went slightly puzzled. the larger sort (classical/jazz) was in order, but the inner sort was almost correct. for some odd reason, Mahler was offending the sorting code and got his titles spread between other composers.
the only fix I could find is to pseudo-edit the Album Sort rule, i.e. open it for editing and pressing OK without really editing.
I know this is a tough one since I have no idea how to reproduce but by adding tens of new albums, and it might be my specific collection and the specific addition order that causes it. however I wonder what triggers full sort (tried re-syncing the library with the tags - no use)