INTERACT FORUM
More => Old Versions => Media Center 12 (Development Ended) => Topic started 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
-
i use something like this in an calculated field.
IsEqual(ListCount([keywords]),15,5)
this gives me the files with more than 15 keywords.
so try:
IsEqual(ListCount([line up]),8,5)
:)
gab
-
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