I would like to format the space reserved for a number shown in a table with separated uncertainty. It seems that when I use the table-format option the brackets around the mantissa disappear. This is illustrated in the example below:
\documentclass{article}
\usepackage{siunitx}
\begin{document}
\begin{table}
\begin{tabular}{
S[separate-uncertainty = true]
S[table-format=1.1(1)e1,
separate-uncertainty = true]
}
{Header} & {Header}\\
1.0(2)e2 & 1.0(2)e2\\
\end{tabular}
\end{table}
\end{document}

I have also tried to use the bracket-numbers and multi-part-units = brackets
without solving this issue. Is there any workaround to center the number and keep the brackets like in the first column of the example?

table-align-exponent,table-align-uncertainty,table-align-comparatoretc options are expected to control a formatted table alignment when more complex aspects of the number are used. Let me know if this doesn't help, I will remove my answer as my answer doesn't solve the centering part of the question. I am not aware of a command that will take precedence over mantissa and center environment. – EngBIRD Jan 05 '15 at 02:41