Need solution for creating Runtime \or\" formula with more than 2 conditions"


Badge +4

Nintex Forms 2013 Ver 2.10.2.0

WIndows7, IE11

This is a question that I suspect has been asked and answered before, but I could not find a reference under any of the search keywords I've tried.

I need to create a Nintex Form rule that uses the 'or" runtime formula builder that has more than 2 conditions.

Please, what is the best practice approach to solving for this?


2 replies

Userlevel 5
Badge +14

try one of these

nintex' built in or() function approach

or(or(or(expression1,expression2),expression3),expression4)
or(or(expression1,expression2),or(expression3,expression4))‍‍

with use of javascript OR operator (doesn't work on nintex  mobile)

expression1 || expression2 || expression3 || expression4
Badge +4

Perfect - Thank you for your prompt feedback

Reply