Skip to main content
Nintex Community Menu Bar
Solved

Nintex Automation Cloud: SharePoint Online Start Event Condition Builder: Only on update

  • April 18, 2024
  • 5 replies
  • 127 views

Forum|alt.badge.img+4

Hello,

in the Nintex onPrem version it was possible to define a start event condition only for an update event.

So that the workflow starts everytime a new element is created, but only on a condition, when an element is updated.

It seems to me, according to the documentation, that this differentiation is not possible with NAC.

Is there any way to make this differentiation with NAC, or is this a missing feature?

Best regards,

Niklas

Best answer by brent_read

Hi @NiklasG 

 

You should be able to use this by using the condition builder to check the version of the item.  The version of a new item is 1.0 so your condition would be something like:

IF version = 1.0 

OR

IF Other conditions

There’s potentially some interesting edge cases in that involving save but not submit that you may have to handle as well (believe a saved but not submitted new item would be along the lines of 0.1 for version which you may or may not want a workflow to kick off on).

5 replies

bamaeric
Forum|alt.badge.img+14
  • Apprentice
  • April 18, 2024

If you only want a workflow to run conditionally when a SharePoint online item is updated, you should be able to use the “SharePoint - Update list item” event in the Start Event configuration. There’s a Condition builder there that supports the behavior you are looking for.

Here’s the documentation: SharePoint Online - Update list item (nintex.com)


Forum|alt.badge.img+4
  • Author
  • Rookie
  • April 19, 2024

If you only want a workflow to run conditionally when a SharePoint online item is updated, you should be able to use the “SharePoint - Update list item” event in the Start Event configuration. There’s a Condition builder there that supports the behavior you are looking for.

Here’s the documentation: SharePoint Online - Update list item (nintex.com)

But then the workflow would not start when a new item is added.

How can I run everytime an item is added and only a condition, when an item is updated?


Forum|alt.badge.img+10
  • Nintex Employee
  • Answer
  • April 19, 2024

Hi @NiklasG 

 

You should be able to use this by using the condition builder to check the version of the item.  The version of a new item is 1.0 so your condition would be something like:

IF version = 1.0 

OR

IF Other conditions

There’s potentially some interesting edge cases in that involving save but not submit that you may have to handle as well (believe a saved but not submitted new item would be along the lines of 0.1 for version which you may or may not want a workflow to kick off on).


MillaZ
Nintex Employee
Forum|alt.badge.img+22
  • Nintex Employee
  • April 22, 2024

Hi @NiklasG 
Have you resolved your question? 


Forum|alt.badge.img+4
  • Author
  • Rookie
  • April 23, 2024

Hi @NiklasG 

 

You should be able to use this by using the condition builder to check the version of the item.  The version of a new item is 1.0 so your condition would be something like:

IF version = 1.0 

OR

IF Other conditions

There’s potentially some interesting edge cases in that involving save but not submit that you may have to handle as well (believe a saved but not submitted new item would be along the lines of 0.1 for version which you may or may not want a workflow to kick off on).

Hi @brent_read 

This is a good workaround, but there should be a built in way of achieving this.

Escpecially considering the caveats you mentioned.

I created a feature request: CNV-I-217