INTERACT FORUM

More => Old Versions => Media Center 12 (Development Ended) => Topic started by: Baron Samedi on June 29, 2008, 06:04:39 am

Title: ListCount function : more than x elements in list
Post by: Baron Samedi on June 29, 2008, 06:04:39 am
Hello,

I'm trying to make a smartlist with tracks having more than 8 elements in a list field and i can't find a way to use ListCount to do that.

I'm already using ListCount for equality : [=ListCount([line up])]=[3]

I've tried with =>, >=, =>= with no success. I tried to use the isEqual function too, still no success.

Has someone already made a smartlist with a similar condition?

Thanks

Title: Re: ListCount function : more than x elements in list
Post by: gappie on June 29, 2008, 06:11:59 am
i use something like this in an calculated field.
Code: [Select]
IsEqual(ListCount([keywords]),15,5)this gives me the files with more than 15 keywords.
so try:
Code: [Select]
IsEqual(ListCount([line up]),8,5)
 :)
gab
Title: Re: ListCount function : more than x elements in list
Post by: Baron Samedi on June 29, 2008, 06:17:16 am
Yeah after posting that message i did some more experimentations and i finally found the right formula :

[=IsEqual(ListCount([line up]),8,6)]=1

[line up] being my list field.

Without the [= ...]=1 the function doesn't work in smartlist.

Thanks for the quick answer  :D