JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/js/jquery.dataTables.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables-buttons/2.3.3/js/dataTables.buttons.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/pdfmake.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/2.1.0/css/buttons.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.3/css/jquery.dataTables.min.css">
<script src="https://cdn.datatables.net/buttons/2.1.0/js/buttons.print.min.js"></script>
<script src="https://cdn.datatables.net/buttons/2.1.0/js/buttons.html5.min.js"></script>
<table id="example" class="display nowrap" style="width:100%">
<thead>
<tr>
<th>Nº</th>
<th>Colaborador</th>
<th>Mês</th>
<th>Ano</th>
<th>Valor</th>
<th>Meta</th>
</tr>
</thead>
<tbody>
<tr>
<th >1</th>
<td>FÁBIO TADEU ARAÚJO</td>
<td></td>
<td>2023</td>
<td>110.500,00</td>
<td>7.000.000,00 (1,6%)</td>
</tr>
<tr>
<th >2</th>
<td>IVAN COMERCIAL</td>
<td></td>
<td>2023</td>
<td>156.600,00</td>
<td>5.000.000,00 (3,1%)</td>
</tr>
<tr>
<th >6</th>
<td>ANDERSON SANTOS GONÇALVES</td>
<td></td>
<td>2023</td>
<td>1.750.450,00</td>
<td>1.000.000,00 (175,0%)</td>
</tr>
<tr>
<th >8</th>
<td>ANDERSON SANTOS GONÇALVES</td>
<td>02-2023</td>
<td></td>
<td>1.750.450,00</td>
<td>2.000.000,00 (87,5%)</td>
</tr>
</tbody>
</table>
JavaScript
$(document).ready(function() {
$('#example').DataTable( {
dom: 'Bfrtip',
"columnDefs": [
{ "type": "num-fmt", "targets": 4}
]
} );
} );