EvanBohan
6 years agoQrew Cadet
Assign 1 of 4 users to a specific Record type? Make it even/fair?
Okay so I have a team of 4 that pick up specific record types categorized by a drop down.
I want to apply an even split to the 4.
For instance the record type (category) might be "complaints". We get lots and lots of comments and feedback, but I only want to distribute the "complaints" evenly among the team of 4.
I have a MOD() formula in place but it isn't going to be perfect because it is based on Record ID. Is there a way to accomplish what I am trying to do?
My current formula for reference
If(
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 0, ToUser("person1@companyemail.com"),
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 1, ToUser("person2@companyemail.com "),
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 2, ToUser("person3@companyemail.com "),
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 3, ToUser("person4@companyemail.com ")
)
I want to apply an even split to the 4.
For instance the record type (category) might be "complaints". We get lots and lots of comments and feedback, but I only want to distribute the "complaints" evenly among the team of 4.
I have a MOD() formula in place but it isn't going to be perfect because it is based on Record ID. Is there a way to accomplish what I am trying to do?
My current formula for reference
If(
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 0, ToUser("person1@companyemail.com"),
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 1, ToUser("person2@companyemail.com "),
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 2, ToUser("person3@companyemail.com "),
[Feedback Type]="Complaint" and Mod([Record ID#],ToNumber([Number of people])) = 3, ToUser("person4@companyemail.com ")
)