Skip to main content
Nintex Community Menu Bar

I need to make a Rule when a certain dropdown value is selected, another field becomes visible.  The dropdown is from a lookup list.

 

However, when I go to add the rule, I only have the "is empty" or "is filled" option.  I need the "equals" option.

 

How can I make that happen on Nintex Responsive Designer?6535iD02B396DE4D19EA0.png

Hi,

What happens if you add the list lookup to a variable and then create a rule that says if the variable is equal to "value"

Then control Visible Yes.


Doesn't seem to work.  Am I doing something wrong?

My variable and rule:

 

 


Also tried this variable.  No dice.

 


You were close,

 

The only things that I have found to do the job is using the lookup fonction to set a variable, and use this variable in a rule.

You need to

- get the control value

- use the parseLookup fonction, to get the id

- cast in number

- use lookup fonction to get the text value

 

Like :

lookup("lookupListTitle","ID",convertToNumber(parseLookup([Form].[LookupControl],false)),"Title")

 

 


@anderj39 wrote:

Also tried this variable.  No dice.