[Tex/LaTex] Drawing vertical arrow to a table column

arrowstables

I would like to draw an arrow to the center of a table column as the following. How can I do that?

enter image description here

Best Answer

You need to place the arrow in a \multicolumn to remove any of the tabular vertical rules.

enter image description here

\documentclass{article}
\begin{document}
\begin{tabular}{|*{8}{c|}}
  \multicolumn{1}{c}{$\downarrow$} \\ \hline
  1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\ \hline
  %...
\end{tabular}
\end{document}