Calendar/Scheduling Sheet

mooshoo

New Member
Joined
May 1, 2018
Messages
2
I manage a small business and have been asked to summarize a calendar we have in Excel. Basically we clean buildings every quarter - 1x a year is a full cleaning, 2x are just outside, and 1x sweep/vacuum but not full cleaning --> full and sweep can't be right after each other. We schedule out about 2 years but things change regularly. Each person has like 20-25 buildings. Below is a short example of one year.

F = full, O = outside, S = sweep

LocationCleanerJanFebMarAprMayJunJulAugSepOctNovDec
Building 1AdamFOSO
Building 2BrendaFOSO
Building 3CharlieFOSO
Building 4DeniseFOSO
Building 5EdwardOFOS
Building 6BrendaFOSO
Building 7BrendaOFOS
Building 8DeniseOFOS
Building 9AdamFOSO

<tbody>
</tbody>

I'm not an Excel pro by any means but took some courses in college years ago and remember a little. Is there a way to summarize these by month and employee?

I have a new sheet where I made a drop down for Employee and Month but I can't seem to find a way to summarize them nicely. Here is what I've been asked for so that the owner can track employees and may check in on them.

EmployeeBrenda<-- dropdown
MonthMarch<-- dropdown
FullOutsideSweep Only
Building 6Building 7Building 9
Building 13Building 10Building 14
Building 16Building 12Building 25
Building 22Building 15Building 27
Building 23Building 17Building 28
.........

<tbody>
</tbody>

I've tried a bunch of things but without success - pivot tables, combinations of giant if statements using index/match functions, arrays

Basically if Cleaner = Brenda and Month = March and any cell within those parameters = F, then list the names of those locations.

Can anyone help here? Or is it too difficult for a more novice user like me to do in Excel? Any help would be appreciated - thanks.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
1
2
LocationCleanerJanFebMarAprMayJunJulAugSepOctNovDec
3
Building 1AdamFOSO
4
Building 2BrendaFOSO
5
Building 3CharlieFOSO
6
Building 4DeniseFOSO
7
Building 5EdwardOFOS
8
Building 6BrendaFOSO
9
Building 7BrendaOFOS
10
Building 8DeniseOFOS
11
Building 9AdamFOSO
12
13
14
EmployeeBrenda<-- dropdown
15
MonthMar<-- dropdown
16
17
FullOutsideSweep Only
18
Building 6Building 7
#NUM!​
19
#NUM!​
#NUM!​
20
Sheet: Sheet17

Array formula in cell A18:
=INDEX($A$3:$A$11,SMALL(IF(($C$3:$N$11="F")*($B$3:$B$11=$C$14)*($C$2:$N$2=$C$15),MATCH(ROW($A$3:$A$11),ROW($A$3:$A$11)),""),ROWS($A$1:A1)))

Array formula in cell B18:
=INDEX($A$3:$A$11,SMALL(IF(($C$3:$N$11="O")*($B$3:$B$11=$C$14)*($C$2:$N$2=$C$15),MATCH(ROW($A$3:$A$11),ROW($A$3:$A$11)),""),ROWS($A$1:A1)))

Array formula in cell C18:
=INDEX($A$3:$A$11,SMALL(IF(($C$3:$N$11="S")*($B$3:$B$11=$C$14)*($C$2:$N$2=$C$15),MATCH(ROW($A$3:$A$11),ROW($A$3:$A$11)),""),ROWS($A$1:A1)))
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,370
Members
449,080
Latest member
Armadillos

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