i want to write formula for below !contain with several conditions: either SFDC stage not won or not lost or not closed , should i use 'AND' or "OR" in bracket .
OPTION A: IF [UUID Check]="T" AND [Date check]="T" AND [Country check]="T" and [Date Diff]<=90 AND (!contains([Stage],"won") or !contains([stage],"lost") or !contains([stage],"closed") or !contains([stage],"close")) THEN "X"
OPTION B: IF [UUID Check]="T" AND [Date check]="T" AND [Country check]="T" and [Date Diff]<=90 AND (!contains([Stage],"won") AND ! contains([stage],"lost") AND !contains([stage],"closed") AND !contains([stage],"close")) THEN "X"
THANK YOU~