After reading this answer https://tex.stackexchange.com/a/52604/10898 I am unable to employ the alphalph package to replace the counter in either levels. See the code below:
\documentclass[letterpaper]{article}
\usepackage{alphalph} % unable to use this package based on the answer given.
\usepackage{enumitem}
\setlist[enumerate,1]{label=(\roman*)}
\setlist[enumerate,2]{label=(\alph*)}
\begin{document}
\begin{enumerate}
\item
\begin{enumerate}
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\item
\end{enumerate}
\end{enumerate}
\end{document}
I have made the proper replacement but get no results:
\makeatletter
\newalphalph{\alphmult}[mult]{\@alph}{26}
\makeatother
\renewcommand{\theenumi}{\alphmult{\value{enumi}}}