Hello,
I am trying to build a flow that sends a table with selected columns that comprises a list of files based on a condition (a column that has either a yes or no input).
It all works as intended but the only thing that I can't figure out is the link to the file in SharePoint comes out too long. I am trying to use the Concat and replace expression to "clean" it up but it doesn't seem to work:
the entire flow:

and here are the select expressions:

the concat formula:
concat('<a href="', item()?['{Link}'], '">', item()?['Title'], '</a>')
The compose step:

Compose Formula
replace(replace(replace(replace(replace(body('CreateTable'), '<', '<'), '>', '>'), '&', '&'), ''', '"'), '"', '"')
This is the output I am getting:

Please let me know what I am doing wrong.
Thanks!