Skip to main content

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

Write a rule for 'Line Manager' like below.


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?


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


Hi Fernando,

This worked for me!!!

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

Many Thanks,

Adam


made a mistake...

This is the correct one

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


Reply