Building Matchmaking Spreadsheet

hus2020

New Member
Joined
Nov 13, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
Dear all,

We host a matchmaking event every 3 years for boys and girls who aspire to settle down 0.

Many sessions and games are run which are conducted by the councellers.

After spending some days, each participant is required to fill in a form where they select their name and 3 selection of the opposite gender,

So essentially, the dataset will be 4 columns. 1)Participant name. 2) Choice 1. 3) Choice 2. 4) Choice 3.

Each row will be the entry by each participant,

We have 24 Boys code B1-B24 and 24 Girls code G1-G24

I want some analysis to be done on this data set as follws-
1) Mark mutual hits i.e. B1choose G1 as one of the options and G1 choose B1 as one of the options. If many mutuals, the priroty is by choice order i.e Choice 1 has more weight then Choice 2.
2) Mark person who has no mutual hits. This scenario, their choice is one sided. They opted for 3 people but none of those choose them back, In this scenario the one sided selection must be analyzed against the availability of the person listed as their choice.

Need advice on building this spreadsheet using match/index/sumproduct/etc formulas and some conditional formatting in excel.

Thanks.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Dear all,

We host a matchmaking event every 3 years for boys and girls who aspire to settle down 0.

Many sessions and games are run which are conducted by the councellers.

After spending some days, each participant is required to fill in a form where they select their name and 3 selection of the opposite gender,

So essentially, the dataset will be 4 columns. 1)Participant name. 2) Choice 1. 3) Choice 2. 4) Choice 3.

Each row will be the entry by each participant,

We have 24 Boys code B1-B24 and 24 Girls code G1-G24

I want some analysis to be done on this data set as follws-
1) Mark mutual hits i.e. B1choose G1 as one of the options and G1 choose B1 as one of the options. If many mutuals, the priroty is by choice order i.e Choice 1 has more weight then Choice 2.
2) Mark person who has no mutual hits. This scenario, their choice is one sided. They opted for 3 people but none of those choose them back, In this scenario the one sided selection must be analyzed against the availability of the person listed as their choice.

Need advice on building this spreadsheet using match/index/sumproduct/etc formulas and some conditional formatting in excel.

Thanks.

Can I suggest this for starters.

Give each person an ID as duplicate names may cause a problem.

Store the names for boys and girls together.

Then you can have additional columns to carry out the analysis.

Building Matchmaking Spreadsheet.xlsm
ABCDEF
1Participant IDGenderNameChoice NumberChoice Number IDReciprocated
21FemaleAvery125Yes
31FemaleAvery227 
41FemaleAvery332 
52FemaleMila142 
62FemaleMila21 
72FemaleMila36 
825MaleJack11Yes
925MaleJack24 
1025MaleJack36 
1132MaleDaniel112 
1232MaleDaniel217 
1332MaleDaniel36 
Choices
Cell Formulas
RangeFormula
B2:B13B2=INDEX(Names!$A$2:$A$49,MATCH($A2,Names!$B$2:$B$49,0))
C2:C13C2=INDEX(Names!$C$2:$C$49,MATCH($A2,Names!$B$2:$B$49,0))
F2:F13F2=IF(COUNTIFS($A$2:$A$13,$E2,$E$2:$E$13,$A2)>0,"Yes","")


Building Matchmaking Spreadsheet.xlsm
ABC
1GenderParticipant IDName
2Female1Avery
3Female2Mila
4Female3Aria
5Female4Scarlett
6Female5Penelope
7Female6Layla
8Female7Chloe
9Female8Victoria
10Female9Madison
11Female10Eleanor
12Female11Grace
13Female12Nora
14Female13Riley
15Female14Zoey
16Female15Hannah
17Female16Hazel
18Female17Lily
19Female18Ellie
20Female19Olivia
21Female20Emma
22Female21Ava
23Female22Sophia
24Female23Isabella
25Female24May
26Male25Jack
27Male26Mateo
28Male27Ezekiel
29Male28Ian
30Male29Samuel
31Male30Levi
32Male31James
33Male32Daniel
34Male33Noah
35Male34Josiah
36Male35Adrian
37Male36Aaron
38Male37Leo
39Male38Ryan
40Male39Wesley
41Male40Liam
42Male41Caleb
43Male42Gabriel
44Male43Charles
45Male44Luke
46Male45Andrew
47Male46Mason
48Male47Owen
49Male48Cameron
Names
 
Upvote 0

Forum statistics

Threads
1,215,081
Messages
6,123,016
Members
449,093
Latest member
ikke

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