Hide Action if formula is true

I’ve got a query regarding the formula needed for an Action button. I’m using the 'Hide Action if formula is true, formula window.

The button is a ‘Complete’ button on a Client form. I need the Complete button to be hidden if the ‘Status’ field is any of the following values;

“Awaiting Low Risk Confirmation” :

“Low Risk Declined” :

“Complete”

And if the ‘Subsidiary’ field isn’t equal to ‘No’ & ‘Subsidiary42’ field isn’t equal to Yes and the ‘ClientACScore’ is blank

I’m struggling with how the @If statement needs to be structured and which conditions need to come first

Any help would be very much appreciated as i’m new to Notes

Thanks in advance

Subject: 5 dollar pls

I think you mean a OR for the subsidiary part, if not change the ‘|’ to a ‘&’.

@Contains(Status;“Awaiting Low Risk Confirmation” : “Low Risk Declined” : “Complete”) | (Subsidiary != “No” & Subsidiary42 != “Yes” & ClientACScore != “”)