I have an online spreadsheet on google and created an html page that shows the spreadsheet table. The problem is that the contents of a column are links and the html table does not show those clickable links. I have found many solutions on the internet, but all of them are including a fixed link in the code. My table receives data and each row has a different link. How can I do this?
Following is a part of the code I executed :
<br><br>
<table id = "Tab">
<thead>
<tr>
<th class= "Titulo">Nº de inscrição</th>
<th class= "Titulo">CPF</th>
<th class= "Titulo">Nº de cadastro</th>
<th class= "Titulo">Link</th>
</tr>
</thead>
<tbody id = "CorpoTabela">
</tbody>
</table>
</div>
</div>
<?!=Chamar("Tabela-js")?>
</body>
</html>