
This is what I have but I am getting a syntax error
AND(
OR(
ISPICKVAL(StageName,"Lost"),
ISPICKVAL(StageName,"Closed Lost"),
ISPICKVAL(StageName,"Closed Won"),
ISPICKVAL(StageName, "7. Won")
),
Amount >= 2500,
ISBLANK(TEXT(Competitor__c))
)
2 respuestas
Hi Jenny,
Your formula looks ok, just copy paste the belowor try using the insert field button and add each line of the formula
AND(
OR(
ISPICKVAL(StageName,"Lost"),
ISPICKVAL(StageName,"Closed Lost"),
ISPICKVAL(StageName,"Closed Won"),
ISPICKVAL(StageName,"7. Won")
),
Amount >= 2500,
ISBLANK(TEXT(Competitor__c))
)