Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello PowerBi Team,
I would like to do the following:
1) Upload a particular folder from a "shared mailbox" to PowerBI (yes, I can)
This folder will conttiune to receive emails with similar table structure as part of the email "Body"
2) Parse the fields in the embedded table in the "Body" of the email and create reports. (Unsuccessful).
I need help in parsing the table variables/fields:
Sample email: (I would like to parse the table and pull the values of ID, Name and Group.
From: aaa@abc.com
Sent: Saturday, December 4, 2020 10:40:42 AM (UTC-06:00) Central Time (US & Canada)
To: xyz@abc.com
Subject: Sample data
Hi,
Here is the data
ID | 1234 |
Name | Joe Smith |
Group | Operations |
Thanks.
Solved! Go to Solution.
Hello @Anonymous
access the html-body of your mail with this reference [Body][HtmlBody]
This give you the html-code of your mail. Use Html.Table to read the html-code.
This code for example gives you all table-cells
Html.Table(HtmlBody,{{"AllCells", "td"}})
this all rows
Html.Table(HtmlBody,{{"AllRows", "tr"}})
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
Hello @Anonymous
access the html-body of your mail with this reference [Body][HtmlBody]
This give you the html-code of your mail. Use Html.Table to read the html-code.
This code for example gives you all table-cells
Html.Table(HtmlBody,{{"AllCells", "td"}})
this all rows
Html.Table(HtmlBody,{{"AllRows", "tr"}})
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
Yes. That helped resolve the problem. Thanks so much!