
17 respostas
ISPICKVAL won't work when trying to check if a value is blank. You need to convert the value to text (please note I am assuming the API field name is "Client_Type__c", if that is not the case you will need to update it with the correct label)
AND(
IsConverted = TRUE,
TEXT(Client_Type__c) = ""
)