[Tex/LaTex] Display of Appendix titles in TOC and in the Document

appendiceschaptersnumberingsectioningtable of contents

enter image description here

The code below produces the contents page and appendix labels shown.
I would like the First line Appendixes to appear without a numnber.
I would then like to have appendix 1 labelled A1 and appendix 2 A2.

A similar question was asked here:

Multiple appendices, distributed throughout document

but I have tried using the package appendix but it doesn't make any difference?

\documentclass{report}
%\usepackage{appendix}


%\makeatletter
%  \@addtoreset{chapter}{part}
%  \@addtoreset{@ppsaveapp}{part}
%\makeatother

\begin{document}

\tableofcontents
%\begin{appendices}
\section{Appendices}
\subsection{appendix 1}
\subsection{appendix 2}
%\end{appendices}
\end{document}

Best Answer

Just a proposition -- there is no general rule on appendices, so it's sometimes a make an educated guess what is desired/requested.

\documentclass{report}
\usepackage{tocloft}%
\usepackage{blindtext}

\addtolength{\cftchapnumwidth}{10pt}%
\begin{document}

\tableofcontents
\chapter{Dummy}
\blindtext

\setcounter{chapter}{0}
\chapter*{Appendices}

\addcontentsline{toc}{part}{Appendices}%
\renewcommand{\thechapter}{A\arabic{chapter}}
\chapter{Super Appendix 1}%
\chapter{Super Appendix 2}%
\end{document}

enter image description here