Hello there, I am trying to insert in a data table a link, but it is not clickable.. any ideas on how to solve that?
Hello @danix2213 ,
try this approach - set the field as calculated and use Javascript.
Give it a shot.
Regards
Stepan
Dear @danix2213,
You can try the following formula for the calculated column to get the link to open:
return `<a target="_blank" href="${data.Column1}">${data.Column1}</a>`
1 Like