<?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: Multiple records in one expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80942#M511528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how would that work if the ID comes from a different Source Table and linked by description? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Apr 2018 18:01:25 GMT</pubDate>
    <dc:creator>easternfish</dc:creator>
    <dc:date>2018-04-23T18:01:25Z</dc:date>
    <item>
      <title>Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80939#M511525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to combine multiple record that are related into same line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exp:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is how my reports looks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 179px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="24"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" width="71"&gt;Description&lt;/TD&gt;&lt;TD class="xl65" width="84"&gt;Total &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="20"&gt;A&lt;/TD&gt;&lt;TD class="xl67"&gt;Item 1&lt;/TD&gt;&lt;TD class="xl68"&gt;$200.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="20"&gt;B&lt;/TD&gt;&lt;TD class="xl67"&gt;&lt;P&gt;Item 1&lt;/P&gt;&lt;/TD&gt;&lt;TD class="xl68"&gt;$100.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is how I want it to look.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" height="70" style="width: 213px; height: 70px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="24"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" width="71"&gt;Description&lt;/TD&gt;&lt;TD class="xl65" width="84"&gt;Total&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="20"&gt;A-B&lt;/TD&gt;&lt;TD class="xl67"&gt;Item 1&lt;/TD&gt;&lt;TD class="xl68"&gt;$300.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know how this can be achieve. &lt;/P&gt;&lt;P&gt;thank you so much in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 17:28:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80939#M511525</guid>
      <dc:creator>easternfish</dc:creator>
      <dc:date>2018-04-23T17:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80940#M511526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the script or in the chart?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 17:40:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80940#M511526</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-23T17:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80941#M511527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; concat(ID, '-') as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(Total) as Total&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...source_table...&lt;/P&gt;&lt;P&gt;GROUP BY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 17:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80941#M511527</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-04-23T17:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80942#M511528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how would that work if the ID comes from a different Source Table and linked by description? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 18:01:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80942#M511528</guid>
      <dc:creator>easternfish</dc:creator>
      <dc:date>2018-04-23T18:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80943#M511529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was trying it in the chart originally. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 18:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80943#M511529</guid>
      <dc:creator>easternfish</dc:creator>
      <dc:date>2018-04-23T18:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80944#M511530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try it like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimensions&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Aggr(Concat(DISTINCT ID, '-'), Description)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(Total)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 18:31:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80944#M511530</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-23T18:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple records in one expression</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80945#M511531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for all your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2018 18:38:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-records-in-one-expression/m-p/80945#M511531</guid>
      <dc:creator>easternfish</dc:creator>
      <dc:date>2018-04-23T18:38:34Z</dc:date>
    </item>
  </channel>
</rss>

