- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2025 07:29 AM
Hello,
I created a workflow that needs to check all user on my user list and update a table.
It works when i have a single user selected, but when i have more than one user it only runs the first user.
How can i fix my workflow to see all the user listed?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 09:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2025 12:19 AM
Hi @mcroxall ,
Add a “For Each” loop BEFORE the lookup, that iterates over the user list (e.g. user_list_approved).
Inside the loop, move your "Look Up Records" action there — and now filter by current item of that loop instead of the whole list.
Then, keep your existing inner “For Each” to update each record found per user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 09:42 AM
i end up creating a action to convert to string.array. that worked!