I have to make a table, but with counted rows, except the head. It's okay to do it with a counter, but it's overboring write (or copypaste) into 144 rows. Is there any automatized solution?
\documentclass{article}
\usepackage{tabu}
\newcounter{lesson}
\begin{document}
\begin{tabu}{@{}cp{{.1667\textwidth}*{2}{p{.3333\textwidth}}@{}}
Cnt&Something&Other something&Another something\\
\hline
\endhead
\stepcounter{lesson}\thelesson&Blah-blah&blablablablablablablabla&blabalblabla\\
\stepcounter{lesson}\thelesson&Lorem ipsum&ecc-pecc kimehecc&Abrak a Dabra\\
% and 142 more lines...
\end{tabu}
\end{document}

collcellallows you to do that. – Jun 24 '19 at 19:19Says: no counter '' defined
– Thomas Benko Jun 24 '19 at 20:37\stepcounterand\arabic, so you'd have to always put the correct counter in that cell, I don't think that's what you want. – Skillmon Jun 24 '19 at 21:05