0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PowerAutomateでHTMLリンクを張る方法

Posted at

特殊文字に勝手に変換されるため、文字列を変換して対策。

Create HTML table

このような数式を作るが、このままだとエスケープされる。
concat('<a href="', item()?['{Link}'], '">Link to item</a>')
そのためreplaceする
replace(replace(replace(body('Create_HTML_table'),'&lt;','<'),'&gt;','>'),'&quot;','"')
concat('<a href="', item()?['{Link}'], '">', item()?['{FileNameWithExtension}'], '</a>')

参考:
https://tomriha.com/how-to-add-hyperlink-in-the-create-html-table-power-automate-action/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?