Skip to main content
Ken Huelskamp 님이 #Validation Rules에 질문했습니다

I have a custom field which contains an external ID.  I want to create a validation rule that permits Blank values after evaluating the field for data.  If there is data in the field, I want the validation rule to enforce numbers only (format of the external ID).  I believe this would be achieved with a nested IF statement but have not been able to find the correct syntax to make this work.  Thanks in advance!

 

#Validation Rules  #Validation Rule

답변 2개
  1. 2024년 2월 29일 오후 9:03

    You could use a Formula like this

    AND(

    NOT(ISBLANK( FieldName )),

    NOT(ISNUMBER( FieldName ))

    )

0/9000