This formula gets no syntax errors, it also doesn't work :-(
AND( NOT(ISPICKVAL( UK_Business_Unit__c, "Auriga")),RecordTypeId = "01280000000Barc",CONTAINS("Closed",TEXT(StageName)))
I don't think the TEXt(picklist) support is working although it says it was delivered in the Spring 14 release. I could be doing something wrong but everything else I try doesn't pass CHECK SYNTAX.
Any and all advice greatly appreciated.
Linda
4 answers
Do you have any Stage's with Closed in the name besided Closed Won or Closed Lost? Assuming not, try this: AND(
NOT(ISPICKVAL( UK_Business_Unit__c, "Auriga")),
RecordTypeId = "01280000000Barc",
ISCLOSED)