How to fix OR formula in Disable IF for a button

@Herve_Soursou

Try one of these:

thisRow.Column5 = "AA" OR thisRow.Column5 = "BB"

OR(thisRow.Column5 = "AA", thisRow.Column5 = "BB")

3 Likes