Hide When

Dear all

I’ve got the following hide when formula detailed below.

@If(Status=“Assurance RM Consultation Required” : “Low Risk Declined” : “Low Risk Confirmed”;@True;

Subsidiary = “No” | Subsidiary1 = “Yes” | Subsidiary31 = “Yes” | Subsidiary42 = “Yes”; @True;

@True)

To clarify in case i’ve got the syntax wrong, basically it should read, IF (any of the listed statuses are True) OR IF (any other those questions / answers are true) THEN hide the Submit To Confirm Low Risk button.

However on forms where the Status is Draft or new i.e. not listed in the above formula and Subsidiary = Yes, the Action button is still not appearing. I’m wondering if i’ve ordered the syntax incorrectly

Thanks in advance

Subject: Hide When

First, you don’t need an if clause in your hide-whens, if the statement is true it will hide the field

In your problem scenario you say Subsidiary=“Yes”, but what are subsidiary1, subsidiary31 or subsidiary42? If any of them are Yes it will hide the button anyway.

What you’re saying is that if subsidiary is yes the button should be showing, I think? I take it this goes for the other subsidiary fields as well?

If so, then you need something along the lines of:

(Status=“Assurance RM Consultation Required” : “Low Risk Declined” : “Low Risk Confirmed”) | (

Subsidiary = “No” & Subsidiary1 = “Yes” & Subsidiary31 = “Yes” & Subsidiary42 = “Yes”)