My problem is to round numbers that are integers so, for example, I have 123456789 but I only want to have 123 * 10^6 in the table cell.
example code:
\begin{table}
\caption{Table} \label{tab:tab}
\begin{center}
\begin{tabular}{l S}
\hline
Name & {number} \\
\hline
a & 18799382 \\
b & 16492855 \\
\hline
\end{tabular}
\end{center}
\end{table}
I want to round the second column to have an output of something like:
\begin{table}
\caption{Table} \label{tab:tab}
\begin{center}
\begin{tabular}{l S}
\hline
Name & {number} \\
\hline
a & 188e5 \\
b & 165e5 \\
\hline
\end{tabular}
\end{center}
\end{table}