Page 1 of 1

'IF' 'AND' nested function

Posted: Tue Feb 05, 2019 2:47 pm
by rexis
Hello All,

I'm new here. I've been researching for a couple days now but I cannot find any solutions.

Is there a way to use nested IF AND function in Stimulsoft report builder?

Re: 'IF' 'AND' nested function

Posted: Wed Feb 06, 2019 12:53 pm
by Lech Kulikowski
Hello,

You can use IIF() function and the following operators:
AND - &&
OR - ||

for example:
IIF(Condition1 && Condition2, trueExpression, falseExpression)

Thank you.