How to center numbers in html table?

My table text is as below, but I want to center the numbers in the middle column of each row, can anyone please assist

concatenate(
"<table>
<tr>
<th><b>Status<b></th>
<th><b>Number<b></th>
<th><b>Value<b></th>
<tr>
<th><i>Live</i></th>
<th>",Text([Live Count]),"</th>
<th>",Text([Live Value]),"</th>
</tr>
<tr>
<th><i>Locked-In</i></th>
<th>",Text([Locked Count]),"</th>
<th>",Text([Locked Value]),"</th>
</tr>
<tr>
<th><i>Processing</i></th>
<th>",Text([Processing Count]),"</th>
<th>",Text([Processing Value]),"</th>
</tr>
<tr>
<th><i>Objection</i></th>
<th>",Text([Objection Count]),"</th>
<th>",Text([Objection Value]),"</th>
</tr>
<tr>
<th><i>ReSign</i></th>
<th>",Text([Resign count]),"</th>
<th>",Text([ReSign Value]),"</th>
</tr>
<tr>
<th><i>Action</i></th>
<th>",Text([Action Count]),"</th>
<th>",Text([Require Value]),"</th>
</tr>
</table>
")

0 5 114
  • UX
5 REPLIES 5
Top Labels in this Space