AND(
ISPICKVAL( Status , 'Closed'),
ISPICKVAL (Type , 'Incident')
)
5 respuestas
Got it, I had to compose an IF statement and also to convert to text with the below formula:
IF(
AND(
TEXT(Type) = "Incident",
TEXT (Status) = "Closed",
ISBLANK(TEXT(Email_Resolution_Sent__c))), True, False )