Skip to main content
17 respostas
  1. 17 de set. de 2014, 12:39
    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) = ""

     

      )
0/9000