Resource grouping? people with the same skill?
- by crick3r
Let's say I have 4 people. Sometimes anyone can do a task, but sometimes they are specific. I would like to group people by skill. Is there any way I can do that?
Right now, I have something like this:
Resources:
SkillA=3, GuyA=1, GuyB=1, GuyC=1
Task A <= SkillA Anyone can do it
Task B <= SkillA, GuyB Only B can do it, but I also allocate the skill just to be sure I don't allocate more than 3 people at the same time.
My problem with this approach is that sometimes GuyA is on holidays, but I can't reduce SkillA from 3 to 2 in that period..
Any tips?