Having a table with numeric values, I want to achieve:
- Automatically grouping digits into blocks of three
- Highlight some cells in bold
However, no alignment is needed. To achieve the first, I use the S column of siunitx, combined with the table-parse-only package option to turn off alignment.
Now I'm struggeling with the second point. The solution from siunitx: Bold single numeric cells proposes the following:
\usepackage{etoolbox,siunitx}
\robustify\bfseries
\sisetup{detect-weight=true,detect-inline-weight=math}
\begin{document}
\begin{tabular}{SS}
1111.11 & \bfseries 1111.11 \\
\end{tabular}
\end{document}
But as soon as I add the table-parse-only option, the second cell isn't bold anymore. I could also write:
1111.11 & {\bfseries 1111.11} \\
Then the second cell is bold, but automatic grouping is turned off.
How can I simply create numeric table with automatic grouping and no alignment, that allows me to highlight some cells in bold?

lcolumn and do\bfseries \num{11111.11}? And why do you want to get rid of the alignment? That's the coolest part of the whole thing... – LaRiFaRi Aug 21 '15 at 10:29