I've got emails which are in a shared Mailbox. These emails have a HTML table. I want to store these values in a SQL Table.
One solution i found was to clean teh HTML and convert to text using "Html To Text" Action.
Sample data after converting to text:
[A][B][C][D][E][F][G]RowvalueA;RowValueB;RowValueC etcc....
Column values are in [], row values are seperated by ";"
Maybe store the row values in variables and apply to each??? How would i identify the row values and loop through the sql table.
Any help is much appreciated. Thanks.
Solved! Go to Solution.
Hi @Shravan
Here is the sample flow based on the input data shared by you.
In this example, I have stored the html code in a compose action:
<p> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> <!-- body {padding:0 2em; font-family:Verdana,sans-serif; color:#444; background:#eee} table {background:#34495E; color:#fff; border-radius:.4em; overflow:hidden; margin:1em 0; min-width:300px} tr {border-top:1px solid #ddd; border-bottom:1px solid #ddd} tr {border-color:#46637f} th, caption, td:before {font-weight:bold!important; letter-spacing:-1px; color:#FFFF00!important; font-weight:bold!important} td:before {font-weight:bold; width:6.5em; display:inline-block} td {display:block; color:#FFFFFF} th, td {text-align:left; margin:4px 6pxem} td:first-child {padding-top:.5em} td:last-child {padding-bottom:.5em} @media (min-width: 480px) { td:before {display:none} th, td {display:table-cell; padding:.25em .5em; padding:4px!important} th:first-child, td:first-child {padding-left:0} th:last-child, td:last-child {padding-right:0} } --> </style> </head> <body> <table><caption>Table I of I which is a daily check</caption><thead><tr><th>[Domain]</th><th>[SQLInstance]</th><th>[evaldate]</th><th>[Database]</th><th>[Section]</th><th>[Details]</th><th>[Next Action]</th></tr></thead><tbody><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td>----</td><td>Failed Job Summary</td><td>Count;JobName;error_message;First failure;Last failure</td><td></td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td></td><td>Failed Job Summary</td><td>1;Multipick - Replen Create - PUHINUI;The job failed. The Job was invoked by Schedule 301 (replen fullfil PUHINUI). The last step to run was step 1 (replen fullfil PUHINUI).;Jan 8 2024 9:10AM;Jan 8 2024 9:10AM</td><td>Assign to DBA</td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td></td><td>Failed Job Summary</td><td>3;Multipick - Autorelease;The job failed. The Job was invoked by Schedule 284 (Autorelease). The last step to run was step 1 (Autorelease).;Jan 8 2024 8:25AM;Jan 8 2024 9:50AM</td><td>Assign to DBA</td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td>----</td><td>Failed Logins</td><td>Failure Count;Failure Text;MinFailureDate;MaxFailureDate</td><td></td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td>msdb</td><td>Failed Logins</td><td>2;Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'. Reason: Could not find a login matching the name provided. [CLIENT: 192.168.9.106];2024-01-03 18:42:56;2024-01-07 18:42:37</td><td>Raise with client</td></tr></tbody></table></body></html></p>
Next, add another compose action to extract the table from the input html code with the help of an expression. Expression needs to be added in the extraction window as shown below:
replace(replace(replace(concat('<table',first(split(last(split(outputs('Compose'),'<table')),'</table>')),'</table>'),'<br>',''),' ',''),decodeUriComponent('%0A'),'')
Finally, add "Select" action to create an array of objects which represent rows. Add expression for 'From' parameter and for each map key & value as shown below:
range(2, sub(int(xpath(xml(outputs('Compose_2')), 'count(//table//tbody//tr)')), 1))
Expression used for Map key & value:
KEY | VALUE |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[1]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[1]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[2]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[2]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[3]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[3]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[4]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[4]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[5]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[5]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[6]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[6]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[7]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[7]//text()')), ' ') |
Output:
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks
Hi @Shravan
You could check my blog that extracts data from html table:
Extract data from html table in email body - Power Platform Community (microsoft.com)
Ony difference is I have used excel for storing the data from html table in email body, so you could change that part.
I hope this will help you in finalizing the solution 🙂
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks
A handy tool might also be Encodian’s Utility - Parse HTML table action.
It identifies HTML tables and returns the data as JSON for use in PA.
As a utility action, it only uses 1/20th of an Encodian credit ie a standard plan with 500 actions could process 10,000 HTML tables.
@Shravan Are you able to show the original email with the Table to get a better idea of what you are working with. I'm assuming your Table will have multiple rows of data, or do they only contain a single row?
Hi Manish,
i did try out your methos but my html is complex, so i used "HTMl to Text" and get values in a string.
My method:
i was able to clean html and get row values as string delimted by new line.
sample :
Rowvalue1
Rowvalue2
Rowvalue3
Rowvalue1
Rowvalue2
Rowvalue3
Is there a way to convert these values to array and "apply to each" and store in appropriate columns in a SP list?
Colum1 = rowvalue1
C2 = r2
c3= r3
and agian loop through c1,c2,c3 for next set of values.
Any hhelp is much appreciated.
If what i'm doing is wrong way of solutioning this, can i give you my HTMl table code and maybe you could explain using your method?
Cheers,
Shravan
Hi @Shravan
In the sample data, I could see the values are repeating after every 3 rows so one possibility is to group them using chunk function. Here is an example:
chunk(split(outputs('Html_to_text')?['body'],decodeUriComponent('%0A')),3)
Now, add "Apply to each" to iterate for each row. Each row is an array from which you could extract the columns values using an expression:
Expression used to get value of 1st element in each iteration:
item()[0]
Similarly, to get values of 2nd & 3rd column, use item()[1] & item()[2]
Output:
Compose action:
Apply to each action:
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks
Hi MAnish,
Thanks a lot for your quick response. I was able to get the values accordingly. But my 'newline' delimeter seems to be causing issues when a single row value is multilined.
I think i'll have to go through your initial solution but will need your help in doing so.
Please see attached email with the html table in the body. can you please apply this html table to your initial solution where you identify the column and row values based on html tags. It will be of huge help to me.
Thanks in advance and will always be in your debt. Please check my attachment which has sample data and html code. please let me know if u need more details.
Cheers,
Shravan
Hi @Shravan
Here is the sample flow based on the input data shared by you.
In this example, I have stored the html code in a compose action:
<p> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> <!-- body {padding:0 2em; font-family:Verdana,sans-serif; color:#444; background:#eee} table {background:#34495E; color:#fff; border-radius:.4em; overflow:hidden; margin:1em 0; min-width:300px} tr {border-top:1px solid #ddd; border-bottom:1px solid #ddd} tr {border-color:#46637f} th, caption, td:before {font-weight:bold!important; letter-spacing:-1px; color:#FFFF00!important; font-weight:bold!important} td:before {font-weight:bold; width:6.5em; display:inline-block} td {display:block; color:#FFFFFF} th, td {text-align:left; margin:4px 6pxem} td:first-child {padding-top:.5em} td:last-child {padding-bottom:.5em} @media (min-width: 480px) { td:before {display:none} th, td {display:table-cell; padding:.25em .5em; padding:4px!important} th:first-child, td:first-child {padding-left:0} th:last-child, td:last-child {padding-right:0} } --> </style> </head> <body> <table><caption>Table I of I which is a daily check</caption><thead><tr><th>[Domain]</th><th>[SQLInstance]</th><th>[evaldate]</th><th>[Database]</th><th>[Section]</th><th>[Details]</th><th>[Next Action]</th></tr></thead><tbody><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td>----</td><td>Failed Job Summary</td><td>Count;JobName;error_message;First failure;Last failure</td><td></td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td></td><td>Failed Job Summary</td><td>1;Multipick - Replen Create - PUHINUI;The job failed. The Job was invoked by Schedule 301 (replen fullfil PUHINUI). The last step to run was step 1 (replen fullfil PUHINUI).;Jan 8 2024 9:10AM;Jan 8 2024 9:10AM</td><td>Assign to DBA</td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td></td><td>Failed Job Summary</td><td>3;Multipick - Autorelease;The job failed. The Job was invoked by Schedule 284 (Autorelease). The last step to run was step 1 (Autorelease).;Jan 8 2024 8:25AM;Jan 8 2024 9:50AM</td><td>Assign to DBA</td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td>----</td><td>Failed Logins</td><td>Failure Count;Failure Text;MinFailureDate;MaxFailureDate</td><td></td></tr><tr><td>CFDAD</td><td>CFD-MPDB</td><td>2024-01-08T10:47:19</td><td>msdb</td><td>Failed Logins</td><td>2;Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'. Reason: Could not find a login matching the name provided. [CLIENT: 192.168.9.106];2024-01-03 18:42:56;2024-01-07 18:42:37</td><td>Raise with client</td></tr></tbody></table></body></html></p>
Next, add another compose action to extract the table from the input html code with the help of an expression. Expression needs to be added in the extraction window as shown below:
replace(replace(replace(concat('<table',first(split(last(split(outputs('Compose'),'<table')),'</table>')),'</table>'),'<br>',''),' ',''),decodeUriComponent('%0A'),'')
Finally, add "Select" action to create an array of objects which represent rows. Add expression for 'From' parameter and for each map key & value as shown below:
range(2, sub(int(xpath(xml(outputs('Compose_2')), 'count(//table//tbody//tr)')), 1))
Expression used for Map key & value:
KEY | VALUE |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[1]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[1]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[2]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[2]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[3]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[3]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[4]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[4]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[5]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[5]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[6]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[6]//text()')), ' ') |
join(xpath(xml(outputs('Compose_2')),'//table//thead//tr[1]//th[7]//text()'),' ') | join(xpath(xml(outputs('Compose_2')), concat('//table//tbody//tr[', item(), ']//td[7]//text()')), ' ') |
Output:
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks
@ManishSolanki Thank you so much. I will test it and see how it goes. Just one more question, how do i store these values in a SP list based on column names? I have created a SharePoint blist with column names, the column names dont change, so how do i store these values in a Sharepoint list accordingly?
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24 17 @Anil_g 7 @ManishSolanki 13 @eetuRobo 5 @David_MA 10 @VishnuReddy1997 5 @SpongYe 9JhonatanOB19932 (tie) @Nived_Nambiar 8 @maltie 2 (tie) @PA-Noob 2 (tie) @LukeMcG 2 (tie) @tgut03 2 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate @Deenuji 12@ManishSolanki 19 @Anil_g 10 @NathanAlvares24 17 @VishnuReddy1997 6 @Expiscornovus 10 @Tjan 5 @Nived_Nambiar 10 @eetuRobo 3 @SudeepGhatakNZ 8 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2 Anil_g2 SharonS2
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages