Skip to main content
Nintex Community Menu Bar

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

  • March 28, 2018
  • 2 replies
  • 11 views

Forum|alt.badge.img+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

Forum|alt.badge.img+14
  • Scholar
  • March 28, 2018

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

Forum|alt.badge.img+4
  • Author
  • March 30, 2018

Perfect - Thank you for your prompt feedback