Hi @HeihoSilver ,
Do you want to make the Hyperlink type column of your SP List to be clickable within the Data Table control?
Based on the needs that you mentioned, I think there is no direct way to achieve your needs. When you load Hyperlink column data from your SP List into your app, the column value would be added with additional text, e.g. "<div class="ExternalClass... ">".
As an alternative solution, I think the "Enable improved data table control selection and Value property" functionality within Advanced settings of App settings could achieve your needs.
On your side, please consider enable the "Enable improved data table control selection and Value property" option within Advanced settings of App settings of your app, then add a new Data Table control within your app.

Set the Items property of your Data Table control to your SP List. Then select the "RichTextTestP" column in your Data Table, set the Text property to following:
Substitute(Last(FirstN(Split(ThisItem.RichTextTestP,">"),3)).Result,"</a","")
Set the IsHyperlink property of the "RichTextTestP" column to following:
true
Set the OnSelect property of the "RichTextTestP" column to following:
Launch( /* <-- use this function to launch a Web URL link */
Substitute(Last(FirstN(Split(DataTable1.Selected.RichTextTestP,">"),3)).Result, "</a","")
)
Note: The 'RichTextTestP' represents the Hyperlink type column in your SP List.
More details about the "Enable improved data table control selection and Value property" functionality in PowerApps, please check the following blog:
https://powerapps.microsoft.com/en-us/blog/improved-data-table-control-with-column-formulas/
More details about the Launch function in PowerApps, please check the following article:
Launch function
Please take a try with above solution, then check if you could display the proper name within your Data Table, and could click the 'RichTextTestP' column value to launch a web page.
Best regards,