This rule needs to apply to only one record type.
SF is telling me that I'm missing a "(" but I think there's something else going wrong. Is there a Validation wiz out there that can help enlighten me?
Thanks
AND(
(Owner:Queue.DeveloperName = "Outbound_Sales_Queue"),
(RecordTypeId = "0122j000000CgftAAC"),
OR(ISPICKVAL(Case.Status, "New")
(ISPICKVAL(Case.Status, "Escalated")))
2 answers
Hi Georgi,
Try this
AND(
Owner:Queue.DeveloperName = "Outbound_Sales_Queue",
RecordTypeId = "0122j000000CgftAAC",
OR(
ISPICKVAL(Case.Status, "New"),
ISPICKVAL(Case.Status, "Escalated")
)
)
I think that Id will not work unless it is 15 digits.