I want to make a pickable text link in my HTML table. This doesnt seem to do it. It just shows the code.
In this example, I just want to see "Text Link" in the LinkToECN column.
Can do?
Solved! Go to Solution.
You can create a compose action after you create your table and use this expression -
replace(replace(body('Create_HTML_table'), '<', '<'), '>', '>')
That'll convert the HTML table to actual usable HTML, without the contents being encoded.
If you're sending it via email, just make sure you have it set to send as HTML.
You can create a compose action after you create your table and use this expression -
replace(replace(body('Create_HTML_table'), '<', '<'), '>', '>')
That'll convert the HTML table to actual usable HTML, without the contents being encoded.
If you're sending it via email, just make sure you have it set to send as HTML.
@SCTdan ,
Yes! That works perfectly. Exactly the result I was after.
I have absolutely NO idea how you wizards know how to do this stuff...
I would have gotten nowhere with my apps without these forums!
This is amazing!
Thank you *so* much, @SCTdan !!
@SCTdan wrote:
You can create a compose action after you create your table and use this expression -
replace(replace(body('Create_HTML_table'), '<', '<'), '>', '>')That'll convert the HTML table to actual usable HTML, without the contents be encoded.
If you're sending it via email, just make sure you have it set to send as HTML.
Hi @SCTdan
I try your solution but still have wrong results.
result in the email :
<a href="https://tasks.office.com/groupe-multiconnect.com/fr-FR/Home/Task/2OQCIvmf7EGWllOAbvETu5cAGiAz">Link</a>
do you have an idea please ?
Tx
@JimmyJames25 Check for the run results. The double quotes might be encoded to "
If so, try replace quotes
replace(replace(replace(body('Create_HTML_table'), '<', '<'), '>', '>'), '"', '"')
Check out new user group experience and if you are a leader please create your group
See the latest Power Automate innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
33 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
51 | |
22 | |
12 | |
11 | |
9 |