{"id":116,"date":"2018-02-06T06:13:35","date_gmt":"2018-02-06T14:13:35","guid":{"rendered":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/html-email-reporting-with-tabular-data\/"},"modified":"2025-06-11T08:09:51","modified_gmt":"2025-06-11T15:09:51","slug":"html-email-reporting-with-tabular-data","status":"publish","type":"post","link":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/html-email-reporting-with-tabular-data\/","title":{"rendered":"Html email reporting with tabular data"},"content":{"rendered":"<p>Email reporting is a great way to export or share data from a PowerApp. With the native Office 365 Outlook connection, it\u2019s easy to format an email with basic HTML to create nice looking email reports.<\/p>\n<p><strong>Example<\/strong>: Let\u2019s say we have a company asset checkout system. The application needs to generate a report of items checked out by an employee and then notify the asset manager. For this scenario, we will create an email preview screen in the PowerApp with HTML tags and tabular data collected from the user\u2019s interaction. The preview is used as a direct input for the Outlook connector, and shows will be seen in the resulting email.<\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"416\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\" style=\"border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"234\"\/><\/a><\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/248bcd35-761d-40a6-a22c-fc69a43b2e4b.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"378\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/248bcd35-761d-40a6-a22c-fc69a43b2e4b.png\" style=\"margin: 0px; border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"1226\"\/><\/a><\/p>\n<p>I\u2019m using the Asset Checkout template for the backend data.<\/p>\n<p>Once the user has selected the items they will be checking out, the tabular data we will use to populate the email are identified (in this example, the items are objects the user selects and are saved to a Collection called \u2018Cart\u2019). With the target data in its own Collection, we can easily wrap the data in HTML tags that can be used to format the email.<\/p>\n<p>\u00a0<a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/db0be3e2-8f02-4a95-b379-96fab805e146.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"413\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/db0be3e2-8f02-4a95-b379-96fab805e146.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"232\"\/><\/a>\u00a0<a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/82c5538d-4ea4-4707-8855-086de4faab10.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"413\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/82c5538d-4ea4-4707-8855-086de4faab10.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"232\"\/><\/a><\/p>\n<h1>Generate the email body.<\/h1>\n<p>To send a simple email, we can declare the user, list the items being checked out by the user, the date checked out, and a return date.<\/p>\n<p>\u00a0<a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/33987442-555d-46b8-b8a5-5567036ca5e4.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"218\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/33987442-555d-46b8-b8a5-5567036ca5e4.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"331\"\/><\/a><\/p>\n<p>Use the \u2018HTML text\u2019 control to preview what you can send as an input to the Office 365 Outlook connector (under Insert &gt; Text &gt; HTML text). In the HtmlText property of the HTML text control, we can combine the application\u2019s data with HTML tags to format into a nice-looking report with the tabular data in the Cart Collection. In our example we combine the user\u2019s information, the current date, a return date (1 month from today), and the actual tabular data items with HTML tags. Let\u2019s look at the different syntax and functions used in the HtmlText property displayed below:<\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/fa071950-54da-4a9a-8cd5-4815193f4e25.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"128\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/fa071950-54da-4a9a-8cd5-4815193f4e25.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"902\"\/><\/a><\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/e4c9d644-896b-414c-863f-a9683efe2d78.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"413\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/e4c9d644-896b-414c-863f-a9683efe2d78.png\" style=\"border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"232\"\/><\/a><\/p>\n<p>\u00a0<\/p>\n<h2>Joining data, variables and static text<\/h2>\n<p>Use the ampersand (\u2019&amp;\u2019) character (or alternatively the Concatenate() function) to combine text and data. Here we combine the row label followed with the associated datum joined with an ampersand like so:<\/p>\n<p><strong>&#8220;&lt;b&gt; Employee: &lt;\/b&gt;&#8221; &amp; User.FullName &amp; \u201c&lt;br&gt;\u201d<\/strong><\/p>\n<p>\u00a0<\/p>\n<h2>HTML tags<\/h2>\n<p>You can use any HTML tags to markup text in the HTML text control. All HTML tags must be in double quotes to be interpreted correctly by PowerApps. Here are details on some tags being used in the example above:<\/p>\n<ul>\n<li><u>New line<\/u>: Use the link break HTML tag (\u201c&lt;br&gt;\u201d) to identify where you want a new line character.<\/li>\n<li><u>Bold<\/u>: Wrap the text you want bolded in bold tags, like so: &lt;b&gt; <i>boldedText<\/i> &lt;\/b&gt;<\/li>\n<li><u>Ordered list<\/u>: Identify the start and end of an ordered or numbered list by using the tags &lt;ol&gt; &lt;\/ol&gt;. List items are identified in between the ordered list tags as &lt;li&gt; <i>listItem <\/i>&lt;\/li&gt;, and will automatically be numbered. The syntax should be something like this:<br \/>\n<strong>&lt;ol&gt;<br \/>\n\t\u00a0\u00a0\u00a0 &lt;li&gt; <em>item1<\/em> &lt;\/li&gt;<br \/>\n\t\u00a0\u00a0\u00a0 &lt;li&gt; <em>item2<\/em> &lt;\/li&gt;<br \/>\n\t\u00a0\u00a0\u00a0 &lt;li&gt; <em>item1<\/em> &lt;\/li&gt;<br \/>\n\t&lt;\/ol&gt;<\/strong><\/li>\n<\/ul>\n<p>A good reference for HTML tags and basics can be found at ww3 schools here: <a href=\"https:\/\/www.w3schools.com\/html\/\">https:\/\/www.w3schools.com\/html\/<\/a><\/p>\n<p>\u00a0<\/p>\n<h2>Formatting the Collection data<\/h2>\n<p>Use the Concat() function to join data rows within a Collection. In this example, we used the Collection \u2018Cart\u2019, so the first argument in Concat() is the Collection\u2019s name, \u2018Cart\u2019.<\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/9a463ded-7f1b-4e7e-b09e-cd71ec705e0d.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"75\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/9a463ded-7f1b-4e7e-b09e-cd71ec705e0d.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"579\"\/><\/a><\/p>\n<p>The second argument in Concat() are the values that will be displayed. This includes the field names and any additional text or characters we add to the argument. In our case we are showing the ProductName and ProductId columns, so the second argument concatenates the two table fields by their respective column names.<\/p>\n<p>We also number the items in the table by concatenating the \u2018list item\u2019 HTML tag (\u2019&lt;li&gt;\u2019) into the second field of this Concat() call. Since the list items are inside two option list (&lt;ol&gt;) tags, the items will be numbered automatically.<\/p>\n<p>\u00a0<\/p>\n<h1>Send the email with the Office 365 Outlook connector<\/h1>\n<p>Connect to the Office 365 Outlook connector<\/p>\n<p>Do this in View &gt; Data sources in the top ribbons. If it\u2019s not in the list of connections when you click \u2018+ Add data source\u2019, then select \u2018+ New connection\u2019. Scroll until you see the \u2018Office 365 Outlook\u2019 connector, click it, then click \u2018Create\u2019 to add it to the app\u2019s data sources.<\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/c107de57-f920-4ac7-ba0b-c4414f704b44.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"550\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/c107de57-f920-4ac7-ba0b-c4414f704b44.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"236\"\/><\/a><\/p>\n<p>\u00a0<\/p>\n<h1>Setup the send email button<\/h1>\n<p>Create a button control where the OnSelect property will send out the email with the HTML body text we\u2019ve just configured.<\/p>\n<p>In the OnSelect property of the button, type in \u2018Office365.SendEmail(\u2018, and intellisense will provide the list of up to 4 parameters and details needed to complete the method:<\/p>\n<ul>\n<li>The first parameter is the email recipient. In this case we always want the recipient to be the same email address of the asset manager, so the argument is a static email <a href=\"mailto:\u2018assetManager@contoso.com\u2019\">\u2018assetManager@contoso.com\u2019<\/a>.<br \/>\n<a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/35196519-f930-426d-9578-76e49f30e3b4.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"58\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/35196519-f930-426d-9578-76e49f30e3b4.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"315\"\/><\/a><br \/>\n\t\u00a0<\/li>\n<li>Second is email subject. Here the subject will result as \u201cAsset checkout by John Smith\u201d, since the logged in user\u2019s full name is John Smith.<br \/>\n<a href=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/cf0624d1-3393-444b-8e01-6fd9a733fbd1.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"58\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/cf0624d1-3393-444b-8e01-6fd9a733fbd1.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"316\"\/><\/a><br \/>\n\t\u00a0<\/li>\n<li>Third is the email body text. We can reference the formatted HTML email body we just wrote in the HTML Text control by typing in \u2018HtmlText_EmailPreview.HtmlText\u2019. Whatever appears in that control will be passed into the email body.<br \/>\n<a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/898a9962-8798-478b-bdba-1209c59315f6.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"58\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/898a9962-8798-478b-bdba-1209c59315f6.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"315\"\/><\/a><br \/>\n\t\u00a0<\/li>\n<li>In the fourth parameter make sure to set the variable IsHtml to true, otherwise all the HTML formatting will not work and the tags will be visible.<br \/>\n<a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/86ba8001-d77b-4a3f-90e6-00726e64c5a1.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"58\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/86ba8001-d77b-4a3f-90e6-00726e64c5a1.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"315\"\/><\/a><\/li>\n<\/ul>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/31cdcf9c-0f02-4527-a771-4b31db5eee54.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"587\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/31cdcf9c-0f02-4527-a771-4b31db5eee54.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"1225\"\/><\/a><\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/84006a8a-03ee-4a90-94cb-d07919c0e884.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"378\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/84006a8a-03ee-4a90-94cb-d07919c0e884.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"1226\"\/><\/a><\/p>\n<p>\u00a0<\/p>\n<p>The possibilities are endless with HTML reporting. You can get creative and make simple data look more sophisticated with additional formatting, colors, and other controls such as tables.<\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/6157d3a7-5d48-4e47-8bdf-dc54a31dbbc1.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"505\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/6157d3a7-5d48-4e47-8bdf-dc54a31dbbc1.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"284\"\/><\/a><\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/5840c1b2-4d06-42ad-a5d4-81fd62dd0fd5.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"360\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/5840c1b2-4d06-42ad-a5d4-81fd62dd0fd5.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"1067\"\/><\/a><\/p>\n<p>\u00a0<\/p>\n<p>Here we use table formatting instead of ordered list tags to organize the data. Where we used tabular data, instead of &lt;ol&gt;, the list items are wrapped in &lt;table&gt; tags. In place of &lt;li&gt;, a row is defined between a set of &lt;tr&gt; tags. The columns are wrapped with &lt;td&gt; tags. The header on top of the table is wrapped in a set of &lt;th&gt; tags. Also, there is a 3rd parameter in the Concat function to end the line\u2019s current &lt;tr&gt; (table row) and begin the next one (like this: &#8220;&lt;\/tr&gt;&lt;tr&gt;&#8221;).<\/p>\n<p><a href=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/5a699ea5-33e3-45fc-9ce4-9ccf3cefbbc6.png\"><img loading=\"lazy\" decoding=\"async\" alt=\"image\" border=\"0\" height=\"392\" src=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/5a699ea5-33e3-45fc-9ce4-9ccf3cefbbc6.png\" style=\"border: 0px currentcolor; border-image: none; display: inline; background-image: none;\" title=\"image\" width=\"878\"\/><\/a><\/p>\n<p><strong>&#8220;&lt;h3&gt;Asset Checkout Notification&lt;\/h3&gt;&#8221; &amp;<\/strong><\/p>\n<p><strong>&#8220;&lt;table width=&#8217;100%&#8217;&gt; &#8221; &amp;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &#8220;&lt;tr&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;td&gt; Employee: &lt;\/td&gt;&#8221; &amp; &#8220;&lt;td&gt;John Smith (johnsm@contoso.com)&lt;\/td&gt;&#8221; &amp;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &#8220;&lt;\/tr&gt;&#8221; &amp;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &#8220;&lt;tr&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;td&gt; Checkout Date: &lt;\/td&gt; &lt;td&gt;&#8221; &amp; Today() &amp; &#8220;&lt;\/td&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &lt;\/tr&gt;&#8221; &amp;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &#8220;&lt;tr&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;td&gt; Return date: &lt;\/td&gt; &lt;td&gt;&#8221; &amp; DateAdd(Today(), 1, Months) &amp; &#8220;&lt;\/td&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &lt;\/tr&gt;&#8221; &amp;<br \/>\n&#8220;&lt;\/table&gt; &lt;br&gt;&#8221; &amp;<\/strong><\/p>\n<p><strong>&#8220;&lt;strong&gt; Items: &lt;\/strong&gt;&#8221; &amp;<br \/>\n&#8220;&lt;table width=&#8217;100%&#8217; border=&#8217;1&#8242; cellpadding=&#8217;5&#8242; style=&#8217;border:1px solid black; border-collapse:collapse&#8217;&gt;&#8221; &amp;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &#8220;&lt;tr style=&#8217;background-color:#efefef&#8217;&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;th&gt;Id&lt;\/th&gt; &lt;th&gt; Name &lt;\/th&gt; &lt;th&gt; Description &lt;\/th&gt;&lt;th&gt; Accessories &lt;\/th&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &lt;\/tr&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0 &lt;tr&gt;&#8221; &amp;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Concat(Cart,<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &#8220;&lt;td&gt;&#8221; &amp; ProductId &amp; &#8221; &lt;\/td&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;td&gt;&#8221; &amp; ProductName &amp; &#8221; &lt;\/td&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;td&gt;&#8221; &amp; ProductDescription2 &amp; &#8221; &lt;\/td&gt;<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &lt;td&gt;&#8221; &amp; ProductDescription1 &amp; &#8221; &lt;\/td&gt;&#8221;,&#8221;&lt;\/tr&gt;&lt;tr&gt;&#8221;) &amp;<br \/>\n&#8220;&lt;\/table&gt;&#8221;<\/strong><\/p>\n<p>\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Email reporting is a great way to export or share data from a PowerApp.<\/p>\n","protected":false},"author":103,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","ms-ems-related-posts":[],"footnotes":""},"audience":[3378],"content-type":[3423],"job-role":[],"product":[3473],"property":[],"topic":[],"coauthors":[2136],"class_list":["post-116","post","type-post","status-publish","format-standard","hentry","audience-it-professional","content-type-tips-and-guides","product-power-apps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Html email reporting with tabular data - Microsoft Power Platform Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Html email reporting with tabular data - Microsoft Power Platform Blog\" \/>\n<meta property=\"og:description\" content=\"Email reporting is a great way to export or share data from a PowerApp.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/html-email-reporting-with-tabular-data\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Power Platform Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-06T14:13:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-11T15:09:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\" \/>\n<meta name=\"author\" content=\"Denise Moran\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Denise Moran\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/demora\/\",\"@type\":\"Person\",\"@name\":\"Denise Moran\"}],\"headline\":\"Html email reporting with tabular data\",\"datePublished\":\"2018-02-06T14:13:35+00:00\",\"dateModified\":\"2025-06-11T15:09:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/\"},\"wordCount\":1296,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\",\"keywords\":[\"Templates\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/\",\"name\":\"Html email reporting with tabular data - Microsoft Power Platform Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\",\"datePublished\":\"2018-02-06T14:13:35+00:00\",\"dateModified\":\"2025-06-11T15:09:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage\",\"url\":\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\",\"contentUrl\":\"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Html email reporting with tabular data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"name\":\"Microsoft Power Platform Blog\",\"description\":\"Innovate with Business Apps\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\",\"name\":\"Microsoft Power Platform Blog\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"width\":194,\"height\":145,\"caption\":\"Microsoft Power Platform Blog\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/5f6e0fb13909510246536d2caca3fef0\",\"name\":\"Denise Moran\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/e4a8472e51ce5115523b909b72e4c7b0dfbc8ecc786782f0957710a11eb42472?s=96&d=mm&r=ga3d6aa44f46b70b250b2d4cd555e1861\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e4a8472e51ce5115523b909b72e4c7b0dfbc8ecc786782f0957710a11eb42472?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e4a8472e51ce5115523b909b72e4c7b0dfbc8ecc786782f0957710a11eb42472?s=96&d=mm&r=g\",\"caption\":\"Denise Moran\"},\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/demora\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Html email reporting with tabular data - Microsoft Power Platform Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/","og_locale":"en_US","og_type":"article","og_title":"Html email reporting with tabular data - Microsoft Power Platform Blog","og_description":"Email reporting is a great way to export or share data from a PowerApp.","og_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/html-email-reporting-with-tabular-data\/","og_site_name":"Microsoft Power Platform Blog","article_published_time":"2018-02-06T14:13:35+00:00","article_modified_time":"2025-06-11T15:09:51+00:00","og_image":[{"url":"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png","type":"","width":"","height":""}],"author":"Denise Moran","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Denise Moran","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/demora\/","@type":"Person","@name":"Denise Moran"}],"headline":"Html email reporting with tabular data","datePublished":"2018-02-06T14:13:35+00:00","dateModified":"2025-06-11T15:09:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/"},"wordCount":1296,"commentCount":0,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage"},"thumbnailUrl":"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png","keywords":["Templates"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/","name":"Html email reporting with tabular data - Microsoft Power Platform Blog","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage"},"thumbnailUrl":"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png","datePublished":"2018-02-06T14:13:35+00:00","dateModified":"2025-06-11T15:09:51+00:00","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#primaryimage","url":"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png","contentUrl":"https:\/\/pwrappscdn.azureedge.net\/mediahandler\/blog\/media\/PowerApps\/blog\/8b6dfb8c-5c1f-45be-b407-3c0f3875b661.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/02\/06\/html-email-reporting-with-tabular-data\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/"},{"@type":"ListItem","position":2,"name":"Html email reporting with tabular data"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","name":"Microsoft Power Platform Blog","description":"Innovate with Business Apps","publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization","name":"Microsoft Power Platform Blog","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","width":194,"height":145,"caption":"Microsoft Power Platform Blog"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/5f6e0fb13909510246536d2caca3fef0","name":"Denise Moran","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e4a8472e51ce5115523b909b72e4c7b0dfbc8ecc786782f0957710a11eb42472?s=96&d=mm&r=ga3d6aa44f46b70b250b2d4cd555e1861","url":"https:\/\/secure.gravatar.com\/avatar\/e4a8472e51ce5115523b909b72e4c7b0dfbc8ecc786782f0957710a11eb42472?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e4a8472e51ce5115523b909b72e4c7b0dfbc8ecc786782f0957710a11eb42472?s=96&d=mm&r=g","caption":"Denise Moran"},"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/demora\/"}]}},"bloginabox_animated_featured_image":null,"bloginabox_display_generated_audio":false,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Power Platform Blog","distributor_original_site_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/116","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/users\/103"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/comments?post=116"}],"version-history":[{"count":1,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/116\/revisions"}],"predecessor-version":[{"id":131114,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/116\/revisions\/131114"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/media?parent=116"}],"wp:term":[{"taxonomy":"audience","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/audience?post=116"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/content-type?post=116"},{"taxonomy":"job-role","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/job-role?post=116"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/product?post=116"},{"taxonomy":"property","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/property?post=116"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/topic?post=116"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/coauthors?post=116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}