As many before me I need consecutive caption numbers for figures and tables instead of chapter-based numbers like Figure 1.2. I use scrreprt and the caption-package for my document. I also need roman table numbers and achieved it by changing the caption label format like this:
\DeclareCaptionLabelFormat{table}{#1~#2}
\captionsetup[table]{labelformat=table}
\renewcommand\thetable{\Roman{table}}
Since they start again with Table I for every chapter looking very oddly in the list of tables I tried the chngcntr-package. It solved the numbers of figures nicely but it overrides the roman numbers. What can I do?