Skip to main content
Nintex Community Menu Bar

Hide/Show panel based on drop down values

  • August 31, 2020
  • 1 reply
  • 79 views

Forum|alt.badge.img+1

Im trying to show panels based on the drop down value.

 

Example : If no.2 is selected, number 2 text would show up, if no.3 is selected, number 2 text and number 3 text would show up. Bascially i tried the 'and' function in the rules, however it only shows up 2 text boxes at a times (text 2 and text 3) . If i select no. 4, only number 3 and number 4 would show up. Number 2 text would disappear.

 

Below ideally is the forumula i used.

and(NumberofCTQstoDispute!="3",NumberofCTQstoDispute!="4",NumberofCTQstoDispute!="5",NumberofCTQstoDispute!="6",NumberofCTQstoDispute!="7",NumberofCTQstoDispute!="8")

 

They are total 8 text boxes that need to appear once i keep selecting the desired value. Unsure what i'm doing wrong here. Attached a screenshot of a form which i found in somebody elss's nintex form.

1 reply

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • September 2, 2020

Hi.

I would put a Hide rule on each text box.
First rule on first text box would be:
lessThan(NumberofCTQstoDispute,1)
Second rule on second tect box would be:
lessThan(NumberofCTQstoDispute,2)

And so on.