Skip to main content
Nintex Community Menu Bar

Update a field in the Nintex form automatically when an item is edited

  • November 24, 2019
  • 2 replies
  • 41 views

Forum|alt.badge.img+6

I would like to change the status of a field when an item is edited.  I have added the following rule to the field:

if(Is Edit Mode,if(isNullOrEmpty(Customer_Manager),ReviewStatus="In Progress",ReviewStatus))

I have also changed the default to "In Progress".

However, it still brings up "Please select a value" when you edit the item.

2 replies

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • November 24, 2019
Hi,

It appears that the if() runtime function is not being used correctly.
It should be If(logical_test, value_if_true, value_if_false)
So for this scenario:
If it is new mode and Customer manager is empty the field that this rule applies to (ReviewStatus )enter "In Progress" if its not true enter "nothing"
Rule would look something like:
If(and(Is Edit Mode,isNullOrEmpty(Customer_Manager)),"In Progress,"")


Forum|alt.badge.img+6
  • Author
  • November 25, 2019

Thank you.