Have a custom new user form that has a list of departments and I am trying to append the description so if the someone selects multiple departments, the multiple departments are listed in the description.
Current simplified business rule:
If(location name)property equals (location) then
Modify the user: set Description to '(location)'
Further down in the rule:
If (department name) property equals 'Yes' then
Modify the user: set Description to '%description% (Department Name)
Seems to work fine when I only do one department. Getting a description of (location) (Department Name), but if multiple departments are selected, the description just changes to (location) (last department selected). According to the execution log: the previous department name just gets overwritten.
Any ideas?