How Round Robin Works
Distribute leads or assignments fairly among team members using a rotating selection algorithm. This ensures equal workload distribution and prevents any single team member from being overwhelmed.Configuration
Inputs
Array of team member IDs that are eligible for assignment. The round robin will randomly select one of these team members with equal probability.
Outputs
The ID of the team member that was selected by the round robin algorithm for the current assignment.
Use Cases
Lead DistributionBest Practices
Team Selection- Only include team members who are currently available
- Consider expertise and specialization when creating pools
- Update team member pools regularly based on availability
- Monitor actual workload distribution over time
- Adjust pools based on team member capacity and performance
- Consider integrating with capacity planning tools
- Track assignment patterns to ensure fair distribution
- Monitor completion rates by assigned team member
- Use assignment data to optimize team performance
- Create different pools for different types of assignments
- Maintain separate pools for different skill sets or departments
- Consider time zones and working hours when creating pools