Skip to main content

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 respostas
  1. 29 de fev. de 2024, 21:03

    You could use a Formula like this

    AND(

    NOT(ISBLANK( FieldName )),

    NOT(ISNUMBER( FieldName ))

    )

0/9000