Hatte schon mal jemand das Problem und wie kann es gelöst werden?
\documentclass[11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{multirow}
\begin{document}
\stepcounter{footnote}
\footnotetext{Text der Fußnote}
\footnotetext{Eine weitere Fußnote}
\footnotetext{Und noch eine weitere}
\begin{tabular}{|l|l|l|}
\hline
Author & Title & Year \\
\hline
\hline
\multirow{3}{*}{Philip K. Dick} & Minority Report & 1956 \\
\cline{2-3}
& Do Androids Dream of Electric Sheep?$^\thefootnote$ & 1968 \\
\cline{2-3}
& A Scanner Darkly$^\thefootnote$ & 1977 \\
\hline
\multirow{3}{*}{Neal Stephenson} & Snow Crash$^\thefootnote$ & 1992 \\
\hline
& The Diamond Age & 1995 \\
\hline
& Cryptonomicon & 1999 \\
\hline
\end{tabular}
\end{document}

