<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Tabular Format in Alert Wizard in QlikView- Possible? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Tabular-Format-in-Alert-Wizard-in-QlikView-Possible/m-p/1834995#M68949</link>
    <description>&lt;P&gt;You could try to imbed your data within a html-structure with an appropriate nested &amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;. For this create your table like they should be and export it as html. Now you have the needed structure and could replace the fixed values with your variable-values and/or any expressions.&lt;/P&gt;&lt;P&gt;Before use this content a it is within an alert to check if it's recognized from target as (valid) html. I'm not sure how the html looks like and if it needs some adjustments like &amp;lt;header&amp;gt;&amp;lt;body&amp;gt; and so on and/or if you need to add/adjust any formattings within it. There are plenty of examples for simple html if your searched for it with google.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
    <pubDate>Thu, 09 Sep 2021 12:53:21 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2021-09-09T12:53:21Z</dc:date>
    <item>
      <title>Tabular Format in Alert Wizard in QlikView- Possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Tabular-Format-in-Alert-Wizard-in-QlikView-Possible/m-p/1834885#M68934</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;We have certain messages inside a Alert Wizard in QlikView (Image below) - that is generating a message body in the Mailbox.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dmohanty_0-1631176985337.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/61623i0CFCED3037EC2E2B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dmohanty_0-1631176985337.png" alt="dmohanty_0-1631176985337.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Email Body looks like this (have added Pipes as Delimiter)&lt;/P&gt;&lt;P&gt;Region&amp;nbsp; |&amp;nbsp; Sales&amp;nbsp; |&amp;nbsp; &amp;nbsp;Profit&lt;/P&gt;&lt;P&gt;A&amp;nbsp; |&amp;nbsp; $10.5K&amp;nbsp; |&amp;nbsp; &amp;nbsp;$200&lt;/P&gt;&lt;P&gt;B&amp;nbsp; |&amp;nbsp; $9.7K&amp;nbsp; |&amp;nbsp; $120&lt;/P&gt;&lt;P&gt;C&amp;nbsp; |&amp;nbsp; $14.1K&amp;nbsp; |&amp;nbsp; $380&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;U&gt;&lt;STRONG&gt;Requirement&lt;/STRONG&gt;&lt;/U&gt;:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;Can we build/design/insert a Table in Alert Wizard, so the email body content should come in a Tabular Format instead of manual delimiters/Pipes? Can we also make Headers Bold or Colored?&amp;nbsp;&lt;/FONT&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;(Like this below):&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Region&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Sales&amp;nbsp;&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Profit&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;$10.5K&lt;/TD&gt;&lt;TD&gt;$200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;$9.7K&lt;/TD&gt;&lt;TD&gt;$120&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;$14.1K&lt;/TD&gt;&lt;TD&gt;$380&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 08:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Tabular-Format-in-Alert-Wizard-in-QlikView-Possible/m-p/1834885#M68934</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2021-09-09T08:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Tabular Format in Alert Wizard in QlikView- Possible?</title>
      <link>https://community.qlik.com/t5/App-Development/Tabular-Format-in-Alert-Wizard-in-QlikView-Possible/m-p/1834995#M68949</link>
      <description>&lt;P&gt;You could try to imbed your data within a html-structure with an appropriate nested &amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;. For this create your table like they should be and export it as html. Now you have the needed structure and could replace the fixed values with your variable-values and/or any expressions.&lt;/P&gt;&lt;P&gt;Before use this content a it is within an alert to check if it's recognized from target as (valid) html. I'm not sure how the html looks like and if it needs some adjustments like &amp;lt;header&amp;gt;&amp;lt;body&amp;gt; and so on and/or if you need to add/adjust any formattings within it. There are plenty of examples for simple html if your searched for it with google.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 12:53:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Tabular-Format-in-Alert-Wizard-in-QlikView-Possible/m-p/1834995#M68949</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-09-09T12:53:21Z</dc:date>
    </item>
  </channel>
</rss>

