Ranking people from a table I have

Ramballah

Active Member
Joined
Sep 25, 2018
Messages
344
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

I have a table where I have people with 'scores' next to them. I want to basically make some kind of new table where those people are ranked for the week.
Basically I want the new table to have all the people that participated listed in there automatically and then count how many times their score is 12 or higher. With that I can get percentages of how often they score etc.
Basically:
Person A participated 6 times, and out of those 6 times only 3 times his score was above 12 so he scores a 50%. makes sense right??? I know this doesnt but bear with me.

1743257859951.png

Ma, Di, Wo, Do, Vrij, Za, Zo are just the days and then u can see basically the names and their scores infront of them. Red being below 12.
So I want a week summary with all the people (I dont have a list of all the names as the names switch every week).
Basically Ivan would come to this: participated 9 times, 3 times he scored below 12. so he gets a 66,67% basically.
Tobey participated 2 times, got both of them above 12 so he gets a 100%.

I hope this now all makes sense and hopefully someone can help me with this!
Aantal tijdenMaWieDiWieWoWieDoWieVrijWieZaWieZoWie
8-90Ivan20Tobey9Ivan22Ivan13
9-100Ivan26Tobey17Ivan20Ivan21
10-1125Patricia37Miranda19Dana25Miranda15
11-124Mara4Miranda30Ivan0Patricia22
12-1313Madelief43Ivan14Sterre6Patricia25
13-1423Patricia34Mara23Alisa12Mara24
14-1523Ashley15Patricia16Madelief14Miranda26
15-162Madelief20Miranda6Sterre8Jill31
16-1717Ashley17Ivan6Dilan4Jill0?
17-1834Zara29Emre31Alisa3Zara0?
18-192Yinthe29Dilan57Anne12Mara0?
19-209Zara8Dana6Judith7Anne0?
20-210Sterre1Emre0Anne6Anne0?
Totaal15228323413917700


TotalSucceedFail%
Ivan96366,67%
Tobey220100%
 
With Power query

Book2
ABCD
18ValueCountNumber >12Division
19Ivan970.777777778
20Tobey210.5
21Patricia551
22Miranda540.8
23Dana210.5
24Mara420.5
25Madelief331
26Sterre300
27Alisa200
28Ashley221
29Jill210.5
30Dilan210.5
31Zara310.333333333
32Emre210.5
33Yinthe111
34Anne400
35Judith100
Sheet1


Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Filtered Rows" = Table.SelectRows(Source, each ([Aantal tijden] <> "Totaal")),
    #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows",{"Aantal tijden", "Wie", "Di", "Wie4", "Wo", "Wie5", "Do", "Wie6", "Vrij"}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Removed Other Columns", {"Aantal tijden"}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Other Columns", "Custom", each try Type.Is(Text.InferNumberType(Text.From([Value])), type number) otherwise false),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each if [Custom] = true then [Value] else null),
    #"Filled Up" = Table.FillUp(#"Added Custom1",{"Custom.1"}),
    #"Filtered Rows1" = Table.SelectRows(#"Filled Up", each ([Custom] = false)),
    #"Added Custom2" = Table.AddColumn(#"Filtered Rows1", "Custom.2", each if [Custom.1] > 12 then 1 else 0),
    #"Grouped Rows" = Table.Group(#"Added Custom2", {"Value"}, {{"Count", each Table.RowCount(_), Int64.Type}, {"Number >12", each List.Sum([Custom.2]), type number}}),
    #"Inserted Division" = Table.AddColumn(#"Grouped Rows", "Division", each [#"Number >12"] / [Count], type number)
in
    #"Inserted Division"
 
Upvote 0
Try:

Book1
ABCDEFGHIJKLMNOPQR
1Aantal tijdenMaWieDiWieWoWieDoWieVrijWieZaWieZoWie
29-Aug0Ivan20Tobey9Ivan22Ivan13
310-Sep0Ivan26Tobey17Ivan20Ivan21
411-Oct25Patricia37Miranda19Dana25Miranda15
512-Nov4Mara4Miranda30Ivan0Patricia22
613-Dec13Madelief43Ivan14Sterre6Patricia25
713-1423Patricia34Mara23Alisa12Mara24
814-1523Ashley15Patricia16Madelief14Miranda26
915-162Madelief20Miranda6Sterre8Jill31
1016-1717Ashley17Ivan6Dilan4Jill0?
1117-1834Zara29Emre31Alisa3Zara0?
1218-192Yinthe29Dilan57Anne12Mara0?
1319-209Zara8Dana6Judith7Anne0?
1420-210Sterre1Emre0Anne6Anne0?
15Totaal15228323413917700
16
17NameSuccessfulNot SuccessfulPercent
18Alisa20100%
19Ashley20100%
20Dana1150%
21Ivan6367%
22Madelief2167%
23Mara1325%
24Miranda4180%
25Patricia3260%
26Sterre1233%
27Tobey20100%
Sheet1
Cell Formulas
RangeFormula
A18:D27A18=LET(arr,E2:R14,s,SEQUENCE(ROWS(arr)*7,,0),I,INDEX(arr,MOD(s,7)+1,(INT(s/7)+1)*2),n,IF(ISTEXT(I),I,""),u,SORT(UNIQUE(FILTER(n,(n<>"?")*(n<>"")))),a,COUNTIFS(arr,">12",OFFSET(arr,0,1),u),b,COUNTIFS(arr,"<=12",OFFSET(arr,0,1),u),CHOOSE({1,2,3,4},u,a,b,a/(a+b)))
Dynamic array formulas.


I did this on Excel 2021. It would be easier with the TOCOL and HSTACK functions which 365 has, but 2021 lacks.
 
Upvote 0
With Power query

Book2
ABCD
18ValueCountNumber >12Division
19Ivan970.777777778
20Tobey210.5
21Patricia551
22Miranda540.8
23Dana210.5
24Mara420.5
25Madelief331
26Sterre300
27Alisa200
28Ashley221
29Jill210.5
30Dilan210.5
31Zara310.333333333
32Emre210.5
33Yinthe111
34Anne400
35Judith100
Sheet1


Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Filtered Rows" = Table.SelectRows(Source, each ([Aantal tijden] <> "Totaal")),
    #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows",{"Aantal tijden", "Wie", "Di", "Wie4", "Wo", "Wie5", "Do", "Wie6", "Vrij"}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Removed Other Columns", {"Aantal tijden"}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Other Columns", "Custom", each try Type.Is(Text.InferNumberType(Text.From([Value])), type number) otherwise false),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each if [Custom] = true then [Value] else null),
    #"Filled Up" = Table.FillUp(#"Added Custom1",{"Custom.1"}),
    #"Filtered Rows1" = Table.SelectRows(#"Filled Up", each ([Custom] = false)),
    #"Added Custom2" = Table.AddColumn(#"Filtered Rows1", "Custom.2", each if [Custom.1] > 12 then 1 else 0),
    #"Grouped Rows" = Table.Group(#"Added Custom2", {"Value"}, {{"Count", each Table.RowCount(_), Int64.Type}, {"Number >12", each List.Sum([Custom.2]), type number}}),
    #"Inserted Division" = Table.AddColumn(#"Grouped Rows", "Division", each [#"Number >12"] / [Count], type number)
in
    #"Inserted Division"
Hi,
Ur code works almost perfectly, I tried adjusting it to make it work but I failed somewhere, also upon using ur code I realized I have numbers first and then a name behind it which I now changed for better reading sakes. Anyway I also failed to say that I use just a data range and not a table format. Is it possible to have this work on just the names and numbers without changing all my merged cells/headers/formats?

Besides that I changed it to this for now:
Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Filtered Rows" = Table.SelectRows(Source, each ([Tijden] <> "Totaal")),
    #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows",{"Tijden", "Naam", "Ma", "Naam4", "Di", "Naam5", "Wo", "Naam6", "Vrij", "Naam7", "Za", "Naam8", "Zo", "Naam9"}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Removed Other Columns", {"Tijden"}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Other Columns", "Custom", each try Type.Is(Text.InferNumberType(Text.From([Value])), type number) otherwise false),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each if [Custom] = true then [Value] else null),
    #"Filled Up" = Table.FillUp(#"Added Custom1",{"Custom.1"}),
    #"Filtered Rows1" = Table.SelectRows(#"Filled Up", each ([Custom] = false)),
    #"Added Custom2" = Table.AddColumn(#"Filtered Rows1", "Custom.2", each if [Custom.1] > 12 then 1 else 0),
    #"Grouped Rows" = Table.Group(#"Added Custom2", {"Value"}, {{"Count", each Table.RowCount(_), Int64.Type}, {"Number >12", each List.Sum([Custom.2]), type number}}),
    #"Inserted Division" = Table.AddColumn(#"Grouped Rows", "Division", each [#"Number >12"] / [Count], type number)
in
    #"Inserted Division"
which gets me this:
1743265609305.png

As shown, some errors
For anne it should be 4 recordings, 3 failed 1 good.
TijdenNaamMaNaamDiNaamWoNaamDoNaamVrijNaamZaNaamZo
08:00-09:00Ivan0Tobey20Ivan9Ivan2213
09:00-10:00Ivan0Tobey26Ivan17Ivan2021
10:00-11:00Patricia25Miranda37Dana19Miranda2515
11:00-12:00Mara4Miranda4Ivan30Patricia022
12:00-13:00Madelief13Ivan43Sterre14Patricia625
13:00-14:00Patricia23Mara34Alisa23Mara1224
14:00-15:00Ashley23Patricia15Madelief16Miranda1426
15:00-16:00Madelief2Miranda20Sterre6Jill831
16:00-17:00Ashley17Ivan17Dilan6Jill4
17:00-18:00Zara34Emre29Alisa31Zara3
18:00-19:00Yinthe2Dilan29Anne57Mara12
19:00-20:00Zara9Dana8Judith6Anne7
20:00-21:00Sterre0Emre1Anne0Anne6
Totaal15228323413917700
 
Upvote 0
Try:

Book1
ABCDEFGHIJKLMNOPQR
1Aantal tijdenMaWieDiWieWoWieDoWieVrijWieZaWieZoWie
29-Aug0Ivan20Tobey9Ivan22Ivan13
310-Sep0Ivan26Tobey17Ivan20Ivan21
411-Oct25Patricia37Miranda19Dana25Miranda15
512-Nov4Mara4Miranda30Ivan0Patricia22
613-Dec13Madelief43Ivan14Sterre6Patricia25
713-1423Patricia34Mara23Alisa12Mara24
814-1523Ashley15Patricia16Madelief14Miranda26
915-162Madelief20Miranda6Sterre8Jill31
1016-1717Ashley17Ivan6Dilan4Jill0?
1117-1834Zara29Emre31Alisa3Zara0?
1218-192Yinthe29Dilan57Anne12Mara0?
1319-209Zara8Dana6Judith7Anne0?
1420-210Sterre1Emre0Anne6Anne0?
15Totaal15228323413917700
16
17NameSuccessfulNot SuccessfulPercent
18Alisa20100%
19Ashley20100%
20Dana1150%
21Ivan6367%
22Madelief2167%
23Mara1325%
24Miranda4180%
25Patricia3260%
26Sterre1233%
27Tobey20100%
Sheet1
Cell Formulas
RangeFormula
A18:D27A18=LET(arr,E2:R14,s,SEQUENCE(ROWS(arr)*7,,0),I,INDEX(arr,MOD(s,7)+1,(INT(s/7)+1)*2),n,IF(ISTEXT(I),I,""),u,SORT(UNIQUE(FILTER(n,(n<>"?")*(n<>"")))),a,COUNTIFS(arr,">12",OFFSET(arr,0,1),u),b,COUNTIFS(arr,"<=12",OFFSET(arr,0,1),u),CHOOSE({1,2,3,4},u,a,b,a/(a+b)))
Dynamic array formulas.


I did this on Excel 2021. It would be easier with the TOCOL and HSTACK functions which 365 has, but 2021 lacks.
My range where just the names and numbers are is E18:R30. I tried changing it but as i just mentioned in my previous reply to someone else I switched the names and numbers. so now i get
1743265914993.png

is it possible to change the formula to my current range setup? and also add a column with total amount of attempts?
TijdenNaamMaNaamDiNaamWoNaamDoNaamVrijNaamZaNaamZo
08:00-09:00Ivan0Tobey20Ivan9Ivan2213
09:00-10:00Ivan0Tobey26Ivan17Ivan2021
10:00-11:00Patricia25Miranda37Dana19Miranda2515
11:00-12:00Mara4Miranda4Ivan30Patricia022
12:00-13:00Madelief13Ivan43Sterre14Patricia625
13:00-14:00Patricia23Mara34Alisa23Mara1224
14:00-15:00Ashley23Patricia15Madelief16Miranda1426
15:00-16:00Madelief2Miranda20Sterre6Jill831
16:00-17:00Ashley17Ivan17Dilan6Jill4
17:00-18:00Zara34Emre29Alisa31Zara3
18:00-19:00Yinthe2Dilan29Anne57Mara12
19:00-20:00Zara9Dana8Judith6Anne7
20:00-21:00Sterre0Emre1Anne0Anne6
Totaal15228323413917700

To which E18 is "Ivan" and R30 is empty on sunday right now.
 
Upvote 0
Another option
Fluff.xlsm
ABCDEFGHIJKLMNOPQR
1Aantal tijdenMaWieDiWieWoWieDoWieVrijWieZaWieZoWie
208-090Ivan20Tobey9Ivan22Ivan13
309-100Ivan26Tobey17Ivan20Ivan21
410-1125Patricia37Miranda19Dana25Miranda15
511-124Mara4Miranda30Ivan0Patricia22
612-1313Madelief43Ivan14Sterre6Patricia25
713-1423Patricia34Mara23Alisa12Mara24
814-1523Ashley15Patricia16Madelief14Miranda26
915-162Madelief20Miranda6Sterre8Jill31
1016-1717Ashley17Ivan6Dilan4Jill0?
1117-1834Zara29Emre31Alisa3Zara0?
1218-192Yinthe29Dilan57Anne12Mara0?
1319-209Zara8Dana6Judith7Anne0?
1420-210Sterre1Emre0Anne6Anne0?
15Totaal15228323413917700
16
17
18
19
20Alisa220100.00%
21Anne41325.00%
22Ashley220100.00%
23Dana21150.00%
24Dilan21150.00%
25Emre21150.00%
26Ivan96366.67%
27Jill2020.00%
28Judith1010.00%
29Madelief32166.67%
30Mara41125.00%
31Miranda54180.00%
32Patricia53260.00%
33Sterre31233.33%
34Tobey220100.00%
35Yinthe1010.00%
36Zara31233.33%
Data
Cell Formulas
RangeFormula
A20:E36A20=LET(d,WRAPROWS(TOCOL(E2:R14),2),f,FILTER(d,(TAKE(d,,-1)<>"")*(TAKE(d,,-1)<>"?")),g,DROP(GROUPBY(TAKE(f,,-1),TAKE(f,,1),HSTACK(COUNT,LAMBDA(v,SUM(--(v>12))),LAMBDA(v,SUM(--(v<12)))),,0),1),HSTACK(g,BYROW(g,LAMBDA(br,INDEX(br,,3)/INDEX(br,,2)))))
Dynamic array formulas.
 
Upvote 0
Try:

Book1
ABCDEFGHIJKLMNOPQR
1TijdenNaamMaNaamDiNaamWoNaamDoNaamVrijNaamZaNaamZo
208:00-09:00Ivan0Tobey20Ivan9Ivan2213
309:00-10:00Ivan0Tobey26Ivan17Ivan2021
410:00-11:00Patricia25Miranda37Dana19Miranda2515
511:00-12:00Mara4Miranda4Ivan30Patricia022
612:00-13:00Madelief13Ivan43Sterre14Patricia625
713:00-14:00Patricia23Mara34Alisa23Mara1224
814:00-15:00Ashley23Patricia15Madelief16Miranda1426
915:00-16:00Madelief2Miranda20Sterre6Jill831
1016:00-17:00Ashley17Ivan17Dilan6Jill4
1117:00-18:00Zara34Emre29Alisa31Zara3
1218:00-19:00Yinthe2Dilan29Anne57Mara12
1319:00-20:00Zara9Dana8Judith6Anne7
1420:00-21:00Sterre0Emre1Anne0Anne6
15Totaal15228323413917700
16
17NameSuccessNot SuccessTotalPercent
18Alisa202100%
19Ashley202100%
20Dana11250%
21Ivan63967%
22Madelief21367%
23Mara13425%
24Miranda41580%
25Patricia32560%
26Sterre12333%
27Tobey202100%
Sheet2
Cell Formulas
RangeFormula
A18:E27A18=LET(arr,E2:R14,s,SEQUENCE(ROWS(arr)*7,,0),I,INDEX(arr,MOD(s,7)+1,INT(s/7)*2+1),n,IF(ISTEXT(I),I,""),u,SORT(UNIQUE(FILTER(n,(n<>"?")*(n<>"")))),a,COUNTIFS(OFFSET(arr,0,1),">12",arr,u),b,COUNTIFS(OFFSET(arr,0,1),"<=12",arr,u),CHOOSE({1,2,3,4,5},u,a,b,a+b,a/(a+b)))
Dynamic array formulas.
 
Upvote 0
Try:

Book1
ABCDEFGHIJKLMNOPQR
1TijdenNaamMaNaamDiNaamWoNaamDoNaamVrijNaamZaNaamZo
208:00-09:00Ivan0Tobey20Ivan9Ivan2213
309:00-10:00Ivan0Tobey26Ivan17Ivan2021
410:00-11:00Patricia25Miranda37Dana19Miranda2515
511:00-12:00Mara4Miranda4Ivan30Patricia022
612:00-13:00Madelief13Ivan43Sterre14Patricia625
713:00-14:00Patricia23Mara34Alisa23Mara1224
814:00-15:00Ashley23Patricia15Madelief16Miranda1426
915:00-16:00Madelief2Miranda20Sterre6Jill831
1016:00-17:00Ashley17Ivan17Dilan6Jill4
1117:00-18:00Zara34Emre29Alisa31Zara3
1218:00-19:00Yinthe2Dilan29Anne57Mara12
1319:00-20:00Zara9Dana8Judith6Anne7
1420:00-21:00Sterre0Emre1Anne0Anne6
15Totaal15228323413917700
16
17NameSuccessNot SuccessTotalPercent
18Alisa202100%
19Ashley202100%
20Dana11250%
21Ivan63967%
22Madelief21367%
23Mara13425%
24Miranda41580%
25Patricia32560%
26Sterre12333%
27Tobey202100%
Sheet2
Cell Formulas
RangeFormula
A18:E27A18=LET(arr,E2:R14,s,SEQUENCE(ROWS(arr)*7,,0),I,INDEX(arr,MOD(s,7)+1,INT(s/7)*2+1),n,IF(ISTEXT(I),I,""),u,SORT(UNIQUE(FILTER(n,(n<>"?")*(n<>"")))),a,COUNTIFS(OFFSET(arr,0,1),">12",arr,u),b,COUNTIFS(OFFSET(arr,0,1),"<=12",arr,u),CHOOSE({1,2,3,4,5},u,a,b,a+b,a/(a+b)))
Dynamic array formulas.
1743267079157.png
I get this
 
Upvote 0
For the new layout
Fluff.xlsm
ABCDEFGHIJKLMNOPQR
1TijdenNaamMaNaamDiNaamWoNaamDoNaamVrijNaamZaNaamZo
208:00-09:00Ivan0Tobey20Ivan9Ivan2213
309:00-10:00Ivan0Tobey26Ivan17Ivan2021
410:00-11:00Patricia25Miranda37Dana19Miranda2515
511:00-12:00Mara4Miranda4Ivan30Patricia022
612:00-13:00Madelief13Ivan43Sterre14Patricia625
713:00-14:00Patricia23Mara34Alisa23Mara1224
814:00-15:00Ashley23Patricia15Madelief16Miranda1426
915:00-16:00Madelief2Miranda20Sterre6Jill831
1016:00-17:00Ashley17Ivan17Dilan6Jill4
1117:00-18:00Zara34Emre29Alisa31Zara3
1218:00-19:00Yinthe2Dilan29Anne57Mara12
1319:00-20:00Zara9Dana8Judith6Anne7
1420:00-21:00Sterre0Emre1Anne0Anne6
15Totaal15228323413917700
16
17
18
19
20Alisa220100.00%
21Anne41325.00%
22Ashley220100.00%
23Dana21150.00%
24Dilan21150.00%
25Emre21150.00%
26Ivan96366.67%
27Jill2020.00%
28Judith1010.00%
29Madelief32166.67%
30Mara41125.00%
31Miranda54180.00%
32Patricia53260.00%
33Sterre31233.33%
34Tobey220100.00%
35Yinthe1010.00%
36Zara31233.33%
37
Data
Cell Formulas
RangeFormula
A20:E36A20=LET(d,WRAPROWS(TOCOL(E2:R14),2),f,FILTER(d,(TAKE(d,,1)<>"")*(TAKE(d,,1)<>"?")),g,DROP(GROUPBY(TAKE(f,,1),TAKE(f,,-1),HSTACK(COUNT,LAMBDA(v,SUM(--(v>12))),LAMBDA(v,SUM(--(v<12)))),,0),1),HSTACK(g,BYROW(g,LAMBDA(br,INDEX(br,,3)/INDEX(br,,2)))))
Dynamic array formulas.
 
Upvote 0
Another option
Fluff.xlsm
ABCDEFGHIJKLMNOPQR
1Aantal tijdenMaWieDiWieWoWieDoWieVrijWieZaWieZoWie
208-090Ivan20Tobey9Ivan22Ivan13
309-100Ivan26Tobey17Ivan20Ivan21
410-1125Patricia37Miranda19Dana25Miranda15
511-124Mara4Miranda30Ivan0Patricia22
612-1313Madelief43Ivan14Sterre6Patricia25
713-1423Patricia34Mara23Alisa12Mara24
814-1523Ashley15Patricia16Madelief14Miranda26
915-162Madelief20Miranda6Sterre8Jill31
1016-1717Ashley17Ivan6Dilan4Jill0?
1117-1834Zara29Emre31Alisa3Zara0?
1218-192Yinthe29Dilan57Anne12Mara0?
1319-209Zara8Dana6Judith7Anne0?
1420-210Sterre1Emre0Anne6Anne0?
15Totaal15228323413917700
16
17
18
19
20Alisa220100.00%
21Anne41325.00%
22Ashley220100.00%
23Dana21150.00%
24Dilan21150.00%
25Emre21150.00%
26Ivan96366.67%
27Jill2020.00%
28Judith1010.00%
29Madelief32166.67%
30Mara41125.00%
31Miranda54180.00%
32Patricia53260.00%
33Sterre31233.33%
34Tobey220100.00%
35Yinthe1010.00%
36Zara31233.33%
Data
Cell Formulas
RangeFormula
A20:E36A20=LET(d,WRAPROWS(TOCOL(E2:R14),2),f,FILTER(d,(TAKE(d,,-1)<>"")*(TAKE(d,,-1)<>"?")),g,DROP(GROUPBY(TAKE(f,,-1),TAKE(f,,1),HSTACK(COUNT,LAMBDA(v,SUM(--(v>12))),LAMBDA(v,SUM(--(v<12)))),,0),1),HSTACK(g,BYROW(g,LAMBDA(br,INDEX(br,,3)/INDEX(br,,2)))))
Dynamic array formulas.
I am sorry i just changed my format during the process of all this so im afraid I dont know how to make this work with the new format :(
TijdenNaamMaNaamDiNaamWoNaamDoNaamVrijNaamZaNaamZo
08:00-09:00Ivan0Tobey20Ivan9Ivan2213
09:00-10:00Ivan0Tobey26Ivan17Ivan2021
10:00-11:00Patricia25Miranda37Dana19Miranda2515
11:00-12:00Mara4Miranda4Ivan30Patricia022
12:00-13:00Madelief13Ivan43Sterre14Patricia625
13:00-14:00Patricia23Mara34Alisa23Mara1224
14:00-15:00Ashley23Patricia15Madelief16Miranda1426
15:00-16:00Madelief2Miranda20Sterre6Jill831
16:00-17:00Ashley17Ivan17Dilan6Jill4
17:00-18:00Zara34Emre29Alisa31Zara3
18:00-19:00Yinthe2Dilan29Anne57Mara12
19:00-20:00Zara9Dana8Judith6Anne7
20:00-21:00Sterre0Emre1Anne0Anne6
Totaal15228323413917700
 
Upvote 0

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