I have a table with lots of raw numbers in the billions and hundreds of millions. I'd like to abbreviate the figures in these columns to millions. So instead of 234,091,123 as per the input, I'd like to display 234.09 without having to change the raw figures.
(I can then manually add the unit (m) to the column header.)
For example, I'd like to go automatically...
FROM:
\documentclass{standalone}
\usepackage[input-ignore={,},input-decimal-markers={.},group-separator={,}]{siunitx}
\begin{document}
\begin{tabular}{l S[table-format=9.0]}
\textbf{String} & \textbf{Number}\\
A & 123,456,789\\
B & 1,234,098\\
{...} & {...}\\
\end{tabular}
\end{document}

TO:

I might have overlooked something, but I didn't find anything in siunitx. Any ideas how this can be achieved?
