News:

Welcome on our forum!

Main Menu

Expressions Plugin

Started by suprsnipes, June 02, 2009, 04:34:01 AM

Previous topic - Next topic

suprsnipes

Hi,

As I am not familiar with the correct terminology I am having some trouble using the expressions plugin and I was hoping to get some help.

This is what I am trying to achieve.

I want to show true or false if the following Variable is met.

Conditional: IIF
Variable: TYPE
Operator: =

in this case IIF(`TYPE`='N',true,'false')

I have also tried it like this;

IIF(TYPE=N,true,false)

But can't seem to get it to work. If you can please provide an example with my variables above so I can get this working...




Arthur Grasin

Please, try

RESULT = IIF(TYPE='N','Y','N')

Please, note, that IIF function can't return a value with the boolean type. You should change your expression to

RESULT = (IIF(TYPE='N','Y','N') = 'Y')

or simplify it

RESULT = (TYPE='N')
If you like my work, please take a few seconds and add feedback about our site or our software [here]