Do you guys have a solution how to get for a workflow the last changed item of the multidropdown. I know there is a parameter last, but not sure it it always work. Especially if the user deletes an item from the middle of the multidropdown.
I need this feature as I want to delete something based on the users actions. As creating is pretty simple.
Thanks.
users can not delete or change data directly in a multidropdown…there needs to be functionality to select an item from the multidropdown to then have other elements utilized for changing the selected value.
Again you can not add or delete items from the multidropdown…having said that and the continuation of your statements, I assume there is just a confusion over the wording used to describe your need.
I think what you actually need is that you want to know for the purposes of adding a value to a workflow action, which of the values in the multidropdown have been either added or deleted most recently.
Now, problem is, if the item is deleted, it will also be removed from the multidropdown and you will no longer have access to the item, since, well, it was deleted, so impossible to use and reference in a workflow.
But, for knowing which is the most recently added, simply use the built in field of created date…so you workflow action will have a dynamic expression for populating the value in the workflow, something like the follow
multidropdowns value :sorted by creation date first item
If you want to know the most recently modified item, use the built in field of modified date in the same way you would the created date for most recently added.