You can do this in your table output PHP code.
https://ww.wp.xz.cn/plugins/advanced-custom-fields-table-field/#how%20to%20output%20the%20table%20html%3F
Here is an example, that adds a link to the first cell of the first table body row:
$table = get_field( 'your_table_field_name' );
if ( ! empty ( $table ) ) {
echo '<table border="0">';
if ( ! empty( $table['caption'] ) ) {
echo '<caption>' . $table['caption'] . '</caption>';
}
if ( ! empty( $table['header'] ) ) {
echo '<thead>';
echo '<tr>';
foreach ( $table['header'] as $th ) {
echo '<th>';
echo $th['c'];
echo '</th>';
}
echo '</tr>';
echo '</thead>';
}
echo '<tbody>';
foreach ( $table['body'] as $row_index => $tr ) {
echo '<tr>';
foreach ( $tr as $cell_index => $td ) {
echo '<td>';
if ( $row_index === 0 && $cell_index === 0 ) {
$td['c'] .= '<a href="#my-link">a link in the first cell of the first table body row</a>';
}
echo $td['c'];
echo '</td>';
}
echo '</tr>';
}
echo '</tbody>';
echo '</table>';
}