I have created the following table in beamer. I wish to point to the totals at the bottom of the table, using an arrow. I also wish to have a label at the arrow's tail. The arrows need to appear once the table and its contents have been displayed.
\begin{document}{beamer}
\begin{frame}{The number of journeys by bees on 29th October}
\begin{tabular}{!{\vrule}c!{\vrule}c!{\vrule}c!{\vrule}}
\textcolor{blue}{Score $(x)$} & \textcolor{magenta}{Frequency $(f)$} & $f\times x$ \\
\textcolor{blue}{$0$} & \textcolor{magenta}{$100$}& $0 \times 100=0$ \\
\textcolor{blue}{$1$}& \textcolor{magenta}{$25$} & $1 \times 25=25$ \\
\textcolor{blue}{$2$} & \textcolor{magenta}{$75$} & $150$ \\
\textcolor{blue}{$3$} & \textcolor{magenta}{$400$} & $1200$ \\
\textcolor{blue}{$4$} & \textcolor{magenta}{$150$} & $600$ \\
\textcolor{blue}{$5$} & \textcolor{magenta}{$80$} & $400$ \\
\rowcolor{orange} Total & $830$ & $2375$ \\
\end{tabular}
\begin{itemize}[<+-| alert@+>]
\item How many bees are there in total?
\item What is the total number of journeys that the bees made?
\end{itemize}
\end{frame}
\end{document}
