Skip to main content
anad0004
March 24, 2022
Question

Validation textField

  • March 24, 2022
  • 8 replies
  • 0 views

IHelo,

I new in Appian, and,  I need to validate that in a texfield, the user on type characters,, I mean  (oaoa, mama, ect), NO number.

is there a special functions?

Could you hlp me please?

8 replies

stefanhelzle0001
Brainy
March 24, 2022
gopalk2865
Participating Frequently
March 24, 2022

Hi , You can use below expression for your validation parameter, let me know if it helps.

if(
  a!isNullOrEmpty(
    tointeger(ri!text)
  ),
  null,
  "Please enter characters only"
)

anad0004
anad0004Author
March 24, 2022

Thans..