Skip to main content

Newbie here... I've created a form with a Number control to capture Zip Code. On the SPO list, I have the column set as Number, no decimal places, and No "Use thousands separator". However, when I try to complete the form, the Number control connected to the Zip Code column on the list is still adding a comma and I cannot figure out how to get rid of this. Any assistance is greatly appreciated.

So after a couple hours of trying and a bit of research... I gave up on the Number control. I ended up using a text-short and using the text mask feature to only allow "99999".


@NMoreno use the single line text type of column. Edit your Nintex form and add below RegEx in validation by RegEx to allow only 9 digit and numbers only.



 



^d{1,8}$


Reply