Hi team,
I’m trying to create a Custom Dynamic Round Robin table.
The table needs to cater for 4 teams to 18 teams. These Teams will be divided into 3 Divisions, D1, D2 and D3. Each team will play each other once.
So the 1st part is, I need to make an expanding Table based on the number of teams in the division from 4 to 10. If it was 4 teams I need it to Start at say A1=Team1, B1=Team2, A2=Team3 and B2=Team4. The easiest way I can think of it working is to make A1 the “locked” team and the others switch position. So either they rotate clockwise or counter clockwise. Eg, Team2 moves from B1 to B2, Team4 moves from B2 to A2 and Team3 moves from A2 to B1. I need it to rotate in that order until it reaches the start point. I need it to be dynamic so that once it can do this with 4 teams it can expand to 10 teams.
I’m using Power Query to pull the table designs across and then Append the Divisions together into 1 massive draw as all teams play each other. The main focus is that the last Rds are the Div1 Vs Div3, so that in the event the schedule is going beyond the time those games can easily be dropped.
At present my table has the Rounds sorted correctly, however the other issue I have now is that I have the Draw in individual cells. Eg in Cell A1 I have 1 v 2. What I need to do is replace 1 with Team A and 2 with Team B. I know I can split the column replace the values and then join the column back again, but I thought I might be able to use the =Left(IsNumber function to find the 1st number and use the Right(IsNumber to find the 2nd number and then replace both with a concatenate function.
I’m trying to avoid using VBA too as i need to be able to use this on a Mac as well as PC.
I’m trying to create a Custom Dynamic Round Robin table.
The table needs to cater for 4 teams to 18 teams. These Teams will be divided into 3 Divisions, D1, D2 and D3. Each team will play each other once.
So the 1st part is, I need to make an expanding Table based on the number of teams in the division from 4 to 10. If it was 4 teams I need it to Start at say A1=Team1, B1=Team2, A2=Team3 and B2=Team4. The easiest way I can think of it working is to make A1 the “locked” team and the others switch position. So either they rotate clockwise or counter clockwise. Eg, Team2 moves from B1 to B2, Team4 moves from B2 to A2 and Team3 moves from A2 to B1. I need it to rotate in that order until it reaches the start point. I need it to be dynamic so that once it can do this with 4 teams it can expand to 10 teams.
I’m using Power Query to pull the table designs across and then Append the Divisions together into 1 massive draw as all teams play each other. The main focus is that the last Rds are the Div1 Vs Div3, so that in the event the schedule is going beyond the time those games can easily be dropped.
At present my table has the Rounds sorted correctly, however the other issue I have now is that I have the Draw in individual cells. Eg in Cell A1 I have 1 v 2. What I need to do is replace 1 with Team A and 2 with Team B. I know I can split the column replace the values and then join the column back again, but I thought I might be able to use the =Left(IsNumber function to find the 1st number and use the Right(IsNumber to find the 2nd number and then replace both with a concatenate function.
I’m trying to avoid using VBA too as i need to be able to use this on a Mac as well as PC.