Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Help with parsing fields from an embedded table in an email

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

ID1234
NameJoe Smith
GroupOperations

 

Thanks.

 

 

1 ACCEPTED SOLUTION
Jimmy801
Community Champion
Community Champion

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

View solution in original post

2 REPLIES 2
Jimmy801
Community Champion
Community Champion

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

Anonymous
Not applicable

Yes.  That helped resolve the problem.  Thanks so much!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.