Calculate % utilization of the resources based on Project Type, Current Project Duration

Hi,
Sheet 1 - Contains following columns
- Resource Name
- Project Type
- Project Duration (Week Number)
Sheet 2 - Contains the following columns
- Project Type
- Project Duration (Week Number)
- % Allocation
- % allocation is different for different combinations of Project Type and Project Duration (Week Number)
Ex. For Project Type A - % allocation is
15% if project duration is week 1
13% if project duration is Week 2
12% if project duration is week 3.
For Project Type B - % allocation is
25% if project duration is week 1
23% if project duration is Week 2
22% if project duration is week 3
For Project Type C - % allocation is
35% if project duration is week 1
33% if project duration is Week 2
32% if project duration is week 3.
I am trying to calculate % allocation for each project on 'Sheet 1' by referring to project type, project duration. It should return the appropriate % allocation value by referring to 'Sheet 2'
---------------------------------------------
Tried this formula and it seems to be working.
=INDEX({Sheet 2 - % Allocation}, MATCH([Project Type]@row, {Sheet 2 - Project Type}, 0) + MATCH([Project Duration]@row, {Sheet 2 - Project Duration}, 0) - 1)
Please review and advise if you have any other ideas. Thank you!
Best Answer
-
It sounds like you're trying to INDEX off of multiple criteria, so you'll need to use the COLLECT function to customize your INDEX range. If I can do it in my head with your variables, it'd be:
=INDEX(COLLECT({Sheet 2 - % Allocation}, {Sheet 2 - Project Type}, ([Project Type]@row, {Sheet 2 - Project Duration} [Project Duration]@row),1)
The last 1 in the INDEX formula assumes that there will only ever be one combination of Project Type/Duration to return.
Answers
-
It sounds like you're trying to INDEX off of multiple criteria, so you'll need to use the COLLECT function to customize your INDEX range. If I can do it in my head with your variables, it'd be:
=INDEX(COLLECT({Sheet 2 - % Allocation}, {Sheet 2 - Project Type}, ([Project Type]@row, {Sheet 2 - Project Duration} [Project Duration]@row),1)
The last 1 in the INDEX formula assumes that there will only ever be one combination of Project Type/Duration to return.
-
Hi Jason,
Brilliant! This worked. Thanks a lot for your help.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 204 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!