Please change the automaic assignee from one user to another user when 'Service Type' is selected as 'other'
Hello,
You would need a plugin to accomplish it.
For example, you could use the Power Scripts add-on:
You could create a post function with a code like this:
if (#{Service Type} == "other") {
assignee = "user1";
}
You can read more about post functions here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.