IsValidIBAN

The IsValidIBAN() function checks whether the input value is a valid IBAN format.

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.

Returns false if text is not a valid IBAN format.

Syntax

IsValidIBAN(text)

IsValidIBAN("123456782") 👍Result: True

IsValidIBAN("123456789") 👎Result: False

Parameters

NameTypeRequiredDescription

text

text

IBAN number that is validated.

Last updated