The IsValidIBAN() function checks whether the input value is a valid IBAN format.
IsValidIBAN()
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Note: IBAN is used for International Bank Account Number identification.
Returns true if text is indeed a valid IBAN format.
true
text
Returns false if text is not a valid IBAN format.
false
IsValidIBAN(
)
IsValidIBAN("123456782") 👍Result: True
IsValidIBAN("123456782")
IsValidIBAN("123456789") 👎Result: False
IsValidIBAN("123456789")
☑️
IBAN number that is validated.
Last updated 3 years ago
Was this helpful?