the users of my app would like to auto-assign someone to a task based upon the first two letters of a company name. I currently have a table with each letter of the english alphabet (including numbers 0-9) and the corresponding assignee. for example:
A: Stan
B: Kyle
C: Timmy
D. Cartman
E. Kenny
F. Stan
G: Timmy
H: Timmy
my logic is basically whenever a new task comes in, the app will lookup the first character of the company associated with that task (i.e. G for Google, A for Apple, 1 for 1-800-Flowers, etc.) in that table.
However, due to an increase in employees, they are asking to split out some of the alphas (i.e. A through AMZ will go to Stan while AN through AZZ will go to Kyle).
Is there a way to can get the logic to identify which person to assign the task to based upon a an alpha range?
thanks!
A: Stan
B: Kyle
C: Timmy
D. Cartman
E. Kenny
F. Stan
G: Timmy
H: Timmy
my logic is basically whenever a new task comes in, the app will lookup the first character of the company associated with that task (i.e. G for Google, A for Apple, 1 for 1-800-Flowers, etc.) in that table.
However, due to an increase in employees, they are asking to split out some of the alphas (i.e. A through AMZ will go to Stan while AN through AZZ will go to Kyle).
Is there a way to can get the logic to identify which person to assign the task to based upon a an alpha range?
thanks!