Reputation: 798
If I configure a workflow to start when an item is changed, how can I tell which field changed to initiate the workflow? What I have in mind is I really only want the workflow to fire if one particular field changes and fall through any other time.
Upvotes: 1
Views: 6031
Reputation: 2364
Your title is a bit different than your question so i'll answer what I think is your question with a tutorial article.
http://sharepointsolutions.blogspot.com/2007/10/sharepoint-designer-workflows-how-to.html
Upvotes: 0
Reputation: 1214
In simple terms, you can't.
Workflows don't hold "pre-change" and "post-change" properties like some events do.
The only thing you can do in a workflow is to check if a field value is "==" or "!=" to a value.
Some possible workarounds:
Upvotes: 1