How to generate round robin team fixtures?

Say I have 5 teams, how can I generate a table of fixtures where every team plays every other team?

You can do it using the Cross transform (with a Clone) to cross join the list of teams with itself. Then use a Filter transform to remove fixtures where a team is playing itsself.

image

round-robin.transform (1.8 KB)