Merge URL and NAME column

Hello,
In my situation:
image

How can I create a new column that enable me to merge Name and URL? So, whenever I click on Name I will go directly to the URL in the column URL.
Thanks

Hey @abovethecloud,

You can either overwrite the name column like this:

<a href="{{currentRow.url}}" target="_blank">{{self}}</a>

or create a custom column like this:

<a href="{{currentRow.url}}" target="_blank">{{currentRow.name}}</a>

Make sure to set the Column type as HTML.

Hope that helps :v: