Validation on Account Number Is Numeric #inSalesforce

Example: Validates that the Account Number is numeric


OR(

   ISBLANK(AccountNumber),

   NOT(ISNUMBER(AccountNumber))

)


Error Message : Account Number should be numeric

Error Location: Account Number

Comments