Branch with Evaluate as True

Hi,
I have two fields .
Field1 can have “NULL” as value and for instance “Val1”
Field2 can have “=” or “!=”

In One branch I want to test case when Field1 = “NULL” and Field2 = “=”.

My branch is evaluate as True. That is ok

But my sequence label, I don’t know how to write.
I test %Field1% == NULL && %Field2% == =
But it doesn’t work. I guess I need to escape the = sign in expression but I dont know how we dot this

Hi Vital,

this depends if it is real text “NULL” or just null value represented by $null.

Branch should be configured as “Evaluate Labels”.

Either
%Field1% == “NULL” and %Field2% == “=”
or
%Field1% == $null and %Field2%== “=”
should do the trick depending of type of Text for Field1 you are expecting.

Regards,
Holger

It is a real null value.It’s not that which doesen’t work.
Just the branch with test on =

Hi Vital,

eventually you will have to enclose the %Field2% with double qoutes.

I.e.
“%Field2%” == “=”

Regards,
Holger