特殊文字に勝手に変換されるため、文字列を変換して対策。
Create HTML table
このような数式を作るが、このままだとエスケープされる。
concat('<a href="', item()?['{Link}'], '">Link to item</a>')
そのためreplaceする
replace(replace(replace(body('Create_HTML_table'),'<','<'),'>','>'),'"','"')
concat('<a href="', item()?['{Link}'], '">', item()?['{FileNameWithExtension}'], '</a>')
参考:
https://tomriha.com/how-to-add-hyperlink-in-the-create-html-table-power-automate-action/