INTERACT FORUM

More => Old Versions => Media Center 17 => Topic started by: minolotus on February 11, 2012, 06:29:27 pm

Title: If-Expression not working properly?
Post by: minolotus on February 11, 2012, 06:29:27 pm
I’ve got a problem with the „if“-expression as it isn’t working any more. For example I use for the file caption in the theatre view the following expression: If([Number Plays]>0, ✔ ,) [.title]. But MC returns for all files a checkmark even if a file has never been played. To narrow down the problem I replaced the [number played] field by other fields and checked it also in a standard view. In all cases I got the same result, MC always returns the value for the “true”-parameter.

Any help on this?
Title: Re: If-Expression not working properly?
Post by: MrC on February 11, 2012, 06:45:41 pm
http://yabb.jriver.com/interact/index.php?topic=69852.msg470992#msg470992 (http://yabb.jriver.com/interact/index.php?topic=69852.msg470992#msg470992)
Title: Re: If-Expression not working properly?
Post by: Matt on February 11, 2012, 06:45:46 pm
I think you need:
If(Compare([Number Plays], >, 0), foo, bar)

It also looks like the popup tooltip for Compare(...) lists broken examples, which is a bug.
Title: Re: If-Expression not working properly?
Post by: minolotus on February 11, 2012, 07:12:08 pm
Thanks for your help. Now, everything is back in order  :)
Title: Re: If-Expression not working properly?
Post by: Marra on February 12, 2012, 05:31:32 am
Something has changed in recent builds to create errors in if() expressions. Have worked fine for at least a month.  Now in process of correcting logic that previously worked.
Title: Re: If-Expression not working properly?
Post by: The Mastermind on July 09, 2012, 12:28:07 am
Perhaps somebody might tell me why this expression no longer works. I use it in theatre view to organise my files by decacde.

if(isempty([year]),?,mid([year],0,3)0s

Unfortunately I don't really understand how these expressions work and borrowed it from somebody else.
Title: Re: If-Expression not working properly?
Post by: rick.ca on July 09, 2012, 12:51:06 am
The If() isn't closed. It should be: if(isempty([year]),?,mid([year],0,3))0s

Recent changes have required the program to be less forgiving about such errors.
Title: Re: If-Expression not working properly?
Post by: The Mastermind on July 13, 2012, 11:45:47 pm
Thank you!