Hi,
I have a list is Sharepoint that has a column that is set to "Required Input" and with the following column validation in:
=(LEN(Account)=13)+(MID(Account,3,1)="/")+(MID(Account,8,1)="/")+(CODE(MID(Account,1,1))>64)+(CODE(MID(Account,1,1))<91)+(CODE(MID(Account,2,1))>64)+(CODE(MID(Account,2,1))<91)+(CODE(MID(Account,4,1))>64)+(CODE(MID(Account,4,1))<91)+(CODE(MID(Account,5,1))>64)+(CODE(MID(Account,5,1))<91)+(CODE(MID(Account,6,1))>47)+(CODE(MID(Account,6,1))<58)+(CODE(MID(Account,7,1))>47)+(CODE(MID(Account,7,1))<58)+(CODE(MID(Account,9,1))>47)+(CODE(MID(Account,9,1))<91)+(CODE(MID(Account,10,1))>47)+(CODE(MID(Account,10,1))<91)+(CODE(MID(Account,11,1))>47)+(CODE(MID(Account,11,1))<91)+(CODE(MID(Account,12,1))>47)+(CODE(MID(Account,12,1))<91)+(CODE(MID(Account,13,1))>47)+(CODE(MID(Account,13,1))<91)=25
This will only allow the correct format to be input into the column, of AA/AA12/AAAAA and in the sharepoint default form, the function does what i expect. If the user enters anything but the correct format, the form will error.
When I create the form in Nintex, it excepts that the column need to contain data and if it doesn't the form will error. but if the user puts anything into the cell, even just 1 letter, the form will except it on a save, but will not create a new record in the list and no error will be flagged.
how can I set Nintex forms to do the same as the sharepoint default form.
Thanks