HELP! I'm Lost

DannyL88

New Member
Joined
Oct 6, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I have a number of groups of staff, each GROUP has different expectations for the types of work that we do (EVENTS). Within the groups I have staff that work different numbers of days (FTE VALUE). I need a formula that will tell me how many EVENTS are expected for each staff member, based on which GROUP they are in and their FTE VALUE. This will be worked out one row at a time. I have 5 different GROUPS and 3 different FTE VALUES.

Possible combinations each are:

If cell G3(FTE VALUE) is "1" and H3 (GROUP) is "IRR" the expectation amount for Event Type 1 would be 6
If cell G3(FTE VALUE) is "1" and H3 (GROUP) is "IQA" the expectation amount Event Type 1 would be 3
If cell G3(FTE VALUE) is "1" and H3 (GROUP) is "ICAO" the expectation amount Event Type 1 would be 3
If cell G3(FTE VALUE) is "1" and H3 (GROUP) is "QACAO" the expectation amount Event Type 1 would be 2
If cell G3(FTE VALUE) is "1" and H3 (GROUP) is "Secondment" the expectation amount Event Type 1 would be 1
If cell G3(FTE VALUE) is "0.8" and H3 (GROUP) is "IRR" the expectation amount for Event Type 1 would be 5
If cell G3(FTE VALUE) is "0.8" and H3 (GROUP) is "IQA" the expectation amount Event Type 1 would be 2
If cell G3(FTE VALUE) is "0.8" and H3 (GROUP) is "ICAO" the expectation amount Event Type 1 would be 2
If cell G3(FTE VALUE) is "0.8" and H3 (GROUP) is "QACAO" the expectation amount Event Type 1 would be 2
If cell G3(FTE VALUE) is "0.8" and H3 (GROUP) is "Secondment" the expectation amount Event Type 1 would be 1
If cell G3(FTE VALUE) is "0.6" and H3 (GROUP) is "IRR" the expectation amount for Event Type 1 would be 4
If cell G3(FTE VALUE) is "0.6" and H3 (GROUP) is "IQA" the expectation amount Event Type 1 would be 2
If cell G3(FTE VALUE) is "0.6" and H3 (GROUP) is "ICAO" the expectation amount Event Type 1 would be 2
If cell G3(FTE VALUE) is "0.6" and H3 (GROUP) is "QACAO" the expectation amount Event Type 1 would be 1
If cell G3(FTE VALUE) is "0.6" and H3 (GROUP) is "Secondment" the expectation amount Event Type 1 would be 1

and so on for each row and each event type

Example Mini Sheet.xlsx
ABCDEFGHIJK
1Monthly Typical Expectations (1 FTE)Expectations
2GroupsEvent type 1Event type 2Event type 3NameFTE ValueGroupEvent Type 1Event Type 2Event Type 3
3IRR622Staff 1
4IQA341Staff 2
5ICAO331Staff 3
6QACAO221Staff 4
7Secondment100Staff 5
8Staff 6
9Monthly Typical Expectations (0.8 FTE)Staff 7
10GroupsEvent type 1Event type 2Event type 3Staff 8
11IRR522Staff 9
12IQA231Staff 10
13ICAO221Staff 11
14QACAO221Staff 12
15Secondment100Staff 13
16Staff 14
17Monthly Typical Expectations (0.6 FTE)Staff 15
18GroupsEvent type 1Event type 2Event type 3
19IRR411
20IQA221
21ICAO221
22QACAO111
23Secondment100
Sheet1
Cell Formulas
RangeFormula
B11:D14B11=B3*0.8
B19:D22B19=B3*0.6
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Since you are populating both the FTE VALUE and GROUP, you need not go too complicated to get your result. Give this a shot
in Cell I2 to start, and then you can drag across and down as needed
Excel Formula:
=SUMIF($A$3:$A$7,$H3,B$3:B$7)*$G3
 
Upvote 0
Solution

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top