Question

I have an Agreement checkbox which is set to NO by default.
I like the checkbox to be validated when the form is submitted:

IF Agreement is Empty/No
Display: Read and agree to the Terms & Condition

What I have tried:

enter image description here I also tried via the RULES

enter image description here

I am lost of ideas...

This is the form for the user to fill out:
enter image description here

Was it helpful?

Solution

You can achieve this via default column validation rather than nintex validation by doing the following :

  • Go to list settings > Validation settings

  • Add this formula

    =IF(Choice="No",FALSE,IF(Choice="",FALSE,TRUE))

  • Try to test now , It should be working properly

enter image description here

[Update]

For nintex at condition section at this

choicefield  == "" || choicefield  == "No"

If not working Try adding two rule , one for No value and for epmty,

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top