Skip to main content
Nintex Community Menu Bar
Solved

Rule Show/Hide

  • December 20, 2017
  • 5 replies
  • 11 views

Forum|alt.badge.img+5

Hi,

Any help please!

 

In a Form I have for example 2 columns:

 

One column is called: CostCentre

This is a dropdown menu with values like:

B001

B002

B003

B004

etc.

 

Second column is called: LineManager

 

How can I setup a rule so that LineManager is hidden on the form unless B003 and B004 is chosen from the dropdown CostCentre.

 

Thanks,

Adam

Best answer by lazyme119

made a mistake...

This is the correct one

!contains (CostCentre, "B003") && !contains (CostCentre,"B004")

5 replies

Forum|alt.badge.img+9

Write a rule for 'Line Manager' like below.


Forum|alt.badge.img+5
  • Author
  • 33 replies
  • December 20, 2017

Hi Laksmi C,

I tried your method:

In here when I choose B003, the LineManagers field shows up. So that is good.

But when I choose B004 than the LineManager fieldis hidden.

I want the LineManager field to be shown if I choose B003 or B004.

Any suggestions?


Forum|alt.badge.img+16
  • 898 replies
  • December 20, 2017

Try the ‌'s suggestion but using !contains() instead !=


Forum|alt.badge.img+5
  • Author
  • 33 replies
  • December 20, 2017

Hi Fernando,

This worked for me!!!

!contains (CostCentre, "B003") && !contains (CostCentre,"0111 B004")

Many Thanks,

Adam


Forum|alt.badge.img+5
  • Author
  • 33 replies
  • Answer
  • December 20, 2017

made a mistake...

This is the correct one

!contains (CostCentre, "B003") && !contains (CostCentre,"B004")