In my file, i have som tables, which are numbered incorrectly.
What I mean by that: I have two tables in chapter 4 and one in chapter 5. They are numbered as 4.1, 4.2 and 5.1, while I want them to be 1, 2 and 3.
MWE is here:
\documentclass{report}
\begin{document}
\section{one}
...
\section{four}
\begin{table}
\caption{Table one}
%a table
\end{table}
\begin{table}
\caption{Table two}
%a table
\end{table}
\section{five}
\begin{table}
\caption{Table three}
%a table
\end{table}
\end{document}

\usepackage{chngcntr}\counterwithout{table}{chapter}. – TeXnician Mar 17 '17 at 18:36