\documentclass[a4paper]{article}
\usepackage{tikz}
\usepackage[margin=1cm]{geometry}
\pagestyle{empty} % Remove page numbers
\begin{document}


% Define player names
\def\PlayerA{A Ethan}
\def\PlayerB{B Louis}
\def\PlayerC{C Ollie}
\def\PlayerD{D Adam}
\def\PlayerE{E Matteo}
\def\PlayerF{F James}

\begin{tikzpicture}[scale=0.9, transform shape]

% Round 1
\node[anchor=east] at (1.14375,4.5) {Round 1};
% Table 1
\draw (0,0) rectangle (2.2875,4.11);
\draw (0,2.055) -- (2.2875,2.055); % Horizontal net line
\node[anchor=north west] at (0.15,1.875) (F1) {\PlayerF};
\node[anchor=north west] at (0.15,3.93) (A1) {\PlayerA};
% Table 2
\draw (4,0) rectangle (6.2875,4.11);
\draw (4,2.055) -- (6.2875,2.055); % Horizontal net line
\node[anchor=north west] at (4.15,1.875) (E1) {\PlayerE};
\node[anchor=north west] at (4.15,3.93) (B1) {\PlayerB};
% Table 3
\draw (8,0) rectangle (10.2875,4.11);
\draw (8,2.055) -- (10.2875,2.055); % Horizontal net line
\node[anchor=north west] at (8.15,1.875) (D1) {\PlayerD};
\node[anchor=north west] at (8.15,3.93) (C1) {\PlayerC};

% Round 2
\node[anchor=east] at (1.14375,-1.5) {Round 2};
% Table 1
\draw (0,-6) rectangle (2.2875,-1.89);
\draw (0,-3.945) -- (2.2875,-3.945); % Horizontal net line
\node[anchor=north west] at (0.15,-4.125) (F2) {\PlayerE};
\node[anchor=north west] at (0.15,-2.07) (A2) {\PlayerA};
% Table 2
\draw (4,-6) rectangle (6.2875,-1.89);
\draw (4,-3.945) -- (6.2875,-3.945); % Horizontal net line
\node[anchor=north west] at (4.15,-4.125) (E2) {\PlayerD};
\node[anchor=north west] at (4.15,-2.07) (B2) {\PlayerF};
% Table 3
\draw (8,-6) rectangle (10.2875,-1.89);
\draw (8,-3.945) -- (10.2875,-3.945); % Horizontal net line
\node[anchor=north west] at (8.15,-4.125) (D2) {\PlayerC};
\node[anchor=north west] at (8.15,-2.07) (C2) {\PlayerB};

% Round 3
\node[anchor=east] at (1.14375,-7.5) {Round 3};
% Table 1
\draw (0,-12) rectangle (2.2875,-7.83);
\draw (0,-9.885) -- (2.2875,-9.885); % Horizontal net line
\node[anchor=north west] at (0.15,-10.065) (F3) {\PlayerD};
\node[anchor=north west] at (0.15,-8.01) (A3) {\PlayerA};
% Table 2
\draw (4,-12) rectangle (6.2875,-7.83);
\draw (4,-9.885) -- (6.2875,-9.885); % Horizontal net line
\node[anchor=north west] at (4.15,-10.065) (E3) {\PlayerC};
\node[anchor=north west] at (4.15,-8.01) (B3) {\PlayerE};
% Table 3
\draw (8,-12) rectangle (10.2875,-7.83);
\draw (8,-9.885) -- (10.2875,-9.885); % Horizontal net line
\node[anchor=north west] at (8.15,-10.065) (D3) {\PlayerB};
\node[anchor=north west] at (8.15,-8.01) (C3) {\PlayerF};

% Round 4
\node[anchor=east] at (1.14375,-13.5) {Round 4};
% Table 1
\draw (0,-18) rectangle (2.2875,-13.83);
\draw (0,-15.885) -- (2.2875,-15.885); % Horizontal net line
\node[anchor=north west] at (0.15,-16.065) (F4) {\PlayerC};
\node[anchor=north west] at (0.15,-14.01) (A4) {\PlayerA};
% Table 2
\draw (4,-18) rectangle (6.2875,-13.83);
\draw (4,-15.885) -- (6.2875,-15.885); % Horizontal net line
\node[anchor=north west] at (4.15,-16.065) (E4) {\PlayerB};
\node[anchor=north west] at (4.15,-14.01) (B4) {\PlayerD};
% Table 3
\draw (8,-18) rectangle (10.2875,-13.83);
\draw (8,-15.885) -- (10.2875,-15.885); % Horizontal net line
\node[anchor=north west] at (8.15,-16.065) (D4) {\PlayerF};
\node[anchor=north west] at (8.15,-14.01) (C4) {\PlayerE};

% Round 5
\node[anchor=east] at (1.14375,-19.5) {Round 5};
% Table 1
\draw (0,-24) rectangle (2.2875,-19.83);
\draw (0,-21.885) -- (2.2875,-21.885); % Horizontal net line
\node[anchor=north west] at (0.15,-22.065) (F5) {\PlayerB};
\node[anchor=north west] at (0.15,-20.01) (A5) {\PlayerA};
% Table 2
\draw (4,-24) rectangle (6.2875,-19.83);
\draw (4,-21.885) -- (6.2875,-21.885); % Horizontal net line
\node[anchor=north west] at (4.15,-22.065) (E5) {\PlayerF};
\node[anchor=north west] at (4.15,-20.01) (B5) {\PlayerC};
% Table 3
\draw (8,-24) rectangle (10.2875,-19.83);
\draw (8,-21.885) -- (10.2875,-21.885); % Horizontal net line
\node[anchor=north west] at (8.15,-22.065) (D5) {\PlayerE};
\node[anchor=north west] at (8.15,-20.01) (C5) {\PlayerD};

\end{tikzpicture}
\end{document}
