INTERACT FORUM

More => Old Versions => JRiver Media Center 30 for Windows => Topic started by: davidperetz on October 26, 2022, 03:51:18 am

Title: Smartlist Rules Problem
Post by: davidperetz on October 26, 2022, 03:51:18 am
Hello to Everyone

I'm trying to create a smarlist with few rules like:

[Media Type]=[Video] [Filename (path)]="Example1" [Filename (path)]="Example2" ~sort=[Date]-d

When i choose only 1 filename path contains ...  its ok and gives results , but when i add the second filename path contains it empty the smartlist

What am im doing wrong?

Thanks
Title: Re: Smartlist Rules Problem
Post by: Matt on October 26, 2022, 06:28:35 am
Separate the paths you want to search with a comma.  See the wiki for more information.
Title: Re: Smartlist Rules Problem
Post by: davidperetz on October 26, 2022, 06:40:13 am
I have tried that as well , still it empty the smartlist

its like when i add another rule of filepath it searches for all of them together and not each seperate
Title: Re: Smartlist Rules Problem
Post by: erviv on October 26, 2022, 06:53:38 am
Agree you should check the wiki. I believe even with commas in your expression it's reading as an ‘and’ statement so won’t return any results.
Title: Re: Smartlist Rules Problem
Post by: davidperetz on October 26, 2022, 07:10:33 am
Im trying for more than half an hour to learn from the wiki but i cant get it done

can someone help?
Title: Re: Smartlist Rules Problem
Post by: blgentry on October 26, 2022, 09:44:22 am
You want something like this:

Code: [Select]
[Filename (path)]="Example1","Example2"
No spaces between the arguments.  You can also explicitly use an "or", but it seems that you have to use parenthesis around the arguments to the or like:

Code: [Select]
([Filename (path)]="Example1") or ([Filename (path)]="Example2")
Reference:  https://wiki.jriver.com/index.php/Search_Language#Grouping_and_Combining

I hope that helps get you started.

Brian.
Title: Re: Smartlist Rules Problem
Post by: lepa on October 26, 2022, 10:09:53 am
I think that parenthesis that you want is like this so both operators are covered with common parenthesis not both operators individually

[Media Type]=[Video] ([Filename (path)]="Example1" or [Filename (path)]="Example2") ~sort=[Date]-d
Title: Re: Smartlist Rules Problem
Post by: davidperetz on October 29, 2022, 04:22:41 am
Thank you blgentry and lepa

That did the trick and worked

i tried that before only with the ()

Thanks again