I'm trying to typeset a sideways table with automatic numbering down the rows and sub-numbering across the columns. I used this answer to number the rows but that only gets me the row header numbers. I'd like the columns to have corresponding sub-numbers to each row (e.g. 1. row header 1a. approximately two rows of..., 1b. ..., 1c. ...). The MWE retains some of the required formatting as my document so some elements (such as the table being sideways) may not be necessary. My attempts have resulted in the counting continuing across the rows rather than getting sub-numbers (e.g. I get 1. 2. 3. 4. across the first row and then the second row starts at 5.) I'm new to LaTeX and this is my first post so sorry if this is obvious or if I've missed the answer elsewhere.
MWE:
\documentclass[11pt,a4paper,openright,oneside]{book}
\usepackage[utf8]{inputenc}
\usepackage{array}
\usepackage{rotating}
\renewcommand{\arraystretch}{1.5}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}
\newcounter{rowcount}
\setcounter{rowcount}{0}
\begin{document}
\begin{sidewaystable}
\centering
\caption{An Appropriate Table Title}
\small
\label{tab:valued_language_capabilities}
\begin{tabular}{@{\stepcounter{rowcount}\therowcount.\hspace*{\tabcolsep}}L{40mm}L{45mm}L{45mm}L{45mm}}
\multicolumn{1}{>{\makebox[3em][r]{}}l}{} & column header & column header & column header\\
\hline
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
row header & approximately two lines of row subcontent & approximately two lines of row subcontent & approximately two lines of row subcontent\\
\hline
\end{tabular}
\end{sidewaystable}
\end{document}
Compiles as:

\multicolumn{1}{>{\makebox[3em][r]{}}l}{column header}to clean up the first table row for a perfect solution. – Danny Foster Mar 22 '20 at 20:26