Hi folks!
I'm working to create a pdf (using Populate a MS Word Tempalte andConvert Word Document to PDF) with data from SharePoint lists.
The last field to populate is a link. But I just can populate as a text field, no as a Hyperlinks.
So, looks a litle bit ugly to share a PDF document with the hyperlinks as a text, without the capability to click and go to the item or file.
This is my SELECT step to create the array.
I was tryinh with Plain Text (Q7) and Rich Text (Q8) in the template, but are the same content.
Q7
URL: replace(replace(replace(items('Apply_to_each')?['{Link}'],'<','<'),'&','&'),'>','>')
Q8
URL: concat('<a href="',replace(replace(replace(items('Apply_to_each')?['{Link}'],'<','<'),'&','&'),'>','>'),'"</a>')
But in my files (Word and PDF) I just see as a text field...
WORD:
PDF:
I get the link and if I copy/paste can go to the item.
But I need get the hyperlink format.
Could you help me?
🤔