Buenas y felíz ginglebels pa tí también
prueba con algo así, aunque te servidría sólo para la celda
<html>
<body>
<table border="1">
<tr>
<td><a style="display:block"> href="http://www.google.es">enlace</a></td>
</tr>
</table>
</body>
</html>
Si no la alternativa sería en javascript
<html>
<body>
<table border="1" onclick="location.href='http://www.google.es'">
<tr>
<td>enlace</td>
</tr>
</table>
</body>
</html>