Skip to main content
2 个回答
  1. 2020年10月25日 09:35
    Hi Menachem,

     

    What is the field type where you enter the company number, is it text or number?

     

    If it's text, you can use the LEN function:

     

    AND (

     

        NOT(ISBLANK(Company_Number__c)),

     

        LEN(Company_Number__c) != 9

     

    )

     

    If it's a number, you will need to convert it to text first:

     

    AND (

     

        NOT(ISBLANK(Company_Number__c)),

     

        LEN(TEXT(Company_Number__c)) != 9

     

    )
0/9000