Morning Everyone!
I have 2 combo boxes. If both have "no" selected I want a button to become visible. If only one has "no" selected or no selection I want the button to remain invisible.

Here is the formula I have for the button but it remains invisible no matter what is selected.
If( ComboA.Selected.Value = "no" && ComboB.Selected.Value = "no", true, false)
Any idea what i'm missing?