Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2024 07:47 AM
Hi everyone, Im trying to make the value of "assigned_to" go to a "List" field everytime the "assigned_to" changes, unfortunatly Im not being able to make it work, does anyone know how to do this ?
Solved! Go to Solution.
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2024 07:58 AM
You can create an onBefore Business Rule and add a condition Assigned To Changes
And in the script you can do
if (current.<list field>)
current.<list field>= current.<list field>+','+current.assigned_to;
else
current.<list field> = current.assigned_to;
Please mark this response as correct or helpful if it assisted you with your question.
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-28-2024 07:58 AM
You can create an onBefore Business Rule and add a condition Assigned To Changes
And in the script you can do
if (current.<list field>)
current.<list field>= current.<list field>+','+current.assigned_to;
else
current.<list field> = current.assigned_to;
Please mark this response as correct or helpful if it assisted you with your question.