Question

Update Status column when completed checkbox is ticked

  • 21 February 2023
  • 1 reply
  • 45 views

Badge

Hello,

I am new to Nintex and designing a form with Classic designer. I need to update the Status column to “Completed” when a Yes/No Checkbox (Column name: Done ) is ticked.

Just trying to find the right expression which will action this within the form itself.

Any help would me much appreciated !

 

Thank you


1 reply

Userlevel 1
Badge +8

Two paths:

  • Custom: in the Classic Designer you could use JavaScript/jQuery to set the value.
  • OOTB: Set an Invalidate rule like AND(Done,Status!=”Completed”) where you have selected the named control Done.  When Done is checked, that piece will be true, and if Status is not equal to completed that will also be true.  Set the rule type to Invalidate, and provide an instructional message like “You must set the Status to Completed prior to submitting this form or deselect Done”

Reply