Hi all,
I have a list of names and I am trying to match them into pairs.
I have managed to assign each person a Record ID and used the ceil formula so the Record ID goes 1 1 2 2 3 3 etc putting the individuals in pairs like below:
| Name | Team | Record ID |
| Amy | A | 1 |
| Sarah | B | 1 |
| John | C | 2 |
| Kate | D | 2 |
| James | E | 3 |
| Paul | F | 3 |
| Dean | G | 4 |
| Grace | A | 4 |
| Harvey | B | 5 |
| Jason | C | 5 |
| Liz | D | 6 |
| Abby | E | 6 |
| Matt | F | 7 |
| Joe | G | 7 |
Please can someone advise on how I can create another column titled 'Match' where the name of the person with the same Record ID as them shows in the match column?
I will be matching individuals monthly so I would like to add in a condition that two individuals cannot be matched again based on another input of match history.
I would also like to add in a second condition that individuals can't be matched if they are in the same team.
I hope this makes sense, any advice would be greatly appreciated!