AND(
RecordType.Name = "Late_Order_Case",
ISPICKVAL(Status , "Closed") ,
OR(
ISBLANK(TEXT(Resolution_Type__c)),
ISBLANK(Cause_Description__c),
ISBLANK(TEXT(Late_Order_Cause__c))
)
)
This is not working what have i missed ?
답변 4개
Hi Jonathan,
The formula looks ok.could you please check on the record type name, it looks like more of a recordtype developer name, please try the below
AND(
RecordType.Name = "Late Order Case",
ISPICKVAL(Status , "Closed") ,
OR(
ISBLANK(TEXT(Resolution_Type__c)),
ISBLANK(Cause_Description__c),
ISBLANK(TEXT(Late_Order_Cause__c))
)
)