Can I Link Items in the Table Component?

Yes!

What you’ll need to do is provide a standard markdown-formatted link, like this:

[Click Here](https://embeddable.com)

And the table will detect that and convert it to:

<a href="https://embeddable.com" target="_blank">Click Here</a>

It’s improbable that you’re storing links as markdown directly in their DB, so what you’ll need to do is create a Measure in your model file(s) that does the conversion. Here’s an example:

- name: link_to_product
   sql: FORMAT('[%s](%s)', name, 'https://www.google.com/search?q='||name)
   type: string

The SQL is taking the name of the product, and then concatenating it into a URL. You would probably not be linking to Google, but it’s the same basic strategy. This could get as complicated as you want, eg a URL that contains an id, a name, a tracking number, etc.