INTERACT FORUM

More => Old Versions => Media Center 15 (Development Ended) => Topic started by: Qythyx on August 02, 2010, 05:32:04 pm

Title: Force resort
Post by: Qythyx on August 02, 2010, 05:32:04 pm
I have a playlist that is sorted via a calculated field based on the number of plays, last played date, star rating, etc. I've found that often when I selet this playlist it is not sorted correctly. Currently the only way I've found to resort it is to reverse sort on this calculated field and then sort it correctly again. Even more interesting, I've found that regardless of if I resort it like this, if I add it to the Playing Now list then it inside Playing Now the order is the initial, incorrectly sorted order. To correct this I then need to do the reverse/correct sorting operation in Playing Now.

So, here are the problems I'm seeing:

FYI, here's the calculated field:

Math(((100 + If(IsEqual(Field(Last Played, 0),), 100, Math(Now() - Field(Last Played,0)))) / 100 / (10 + If(IsEqual([Number Plays],),0,[Number Plays])) * (If(IsEqual(Field(Rating, 0), ), 6, Field(Rating, 0)) * 15) +(If(IsEqual(Field(Last Played,0),), Right(Field(Date Imported,0), 3), Right(Field(Last Played,0), 3)) / 1000)) * 100000)&DataType=[Number]

Thanks.