<?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 Bundle Info Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267274#M100354</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you so much for your help! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jan 2012 16:24:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-01-11T16:24:42Z</dc:date>
    <item>
      <title>Bundle Info Load</title>
      <link>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267272#M100352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have successfully brought images into a dashboard and now I'm struggling with linking those images with the data.&amp;nbsp; Attached is a sample dashboard of what I'm working with.&amp;nbsp; I would like to visually show the number of people in each department.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you help!&lt;/P&gt;&lt;P&gt;Jen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267272#M100352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-11T15:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bundle Info Load</title>
      <link>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267273#M100353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Jen,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Looks as though your issue is that you're only generating the count of people in the department in your actual chart...and the result isn't associated with the People value or the corresponding 'info' image.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I've re-worked your script; primarily to include a resident group by load to calculate the number of people in each Department in the load script to create an actual figure to associate to.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;Data:&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;Load * Inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;id, dep&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;aaa, marketing&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;aba, marketing&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;bbb, sales&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;ccc, admin&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;ddd, accounting&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;dde, accounting&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;ddf, accounting&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;ddg, accounting&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;Left Join (Data)&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;Load dep,&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;count(id) as People&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;Resident Data Group By dep;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;Info:&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;BUNDLE INFO LOAD &lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;People,&lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;'..\Pictures\images\' &amp;amp; People &amp;amp; 'people.png' &lt;/EM&gt;&lt;BR /&gt;&lt;EM style="font-size: 10pt;"&gt;RESIDENT Data;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;The above is untested as I don't have the images locally.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Hopefully that will get you there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;All the best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Matt - Visual Analytics Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;@QlikviewBI&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 16:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267273#M100353</guid>
      <dc:creator>matt_crowther</dc:creator>
      <dc:date>2012-01-11T16:20:21Z</dc:date>
    </item>
    <item>
      <title>Bundle Info Load</title>
      <link>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267274#M100354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you so much for your help! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 16:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267274#M100354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-11T16:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Bundle Info Load</title>
      <link>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267275#M100355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have imported images from a specified path by using script editor..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM style="font-size: 10pt;"&gt;Pictures\images\' &amp;amp; People &amp;amp; 'people.png' &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;how to get images through script editor??&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;Could You Please Help Me?&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 15:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267275#M100355</guid>
      <dc:creator />
      <dc:date>2013-03-31T15:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bundle Info Load</title>
      <link>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267276#M100356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really Ur code is fine..&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one doubt..&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have imported images from a specified path by using script editor..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM style="font-size: 10pt;"&gt;Pictures\images\' &amp;amp; People &amp;amp; 'people.png' &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;how to get images through script editor??&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 10pt;"&gt;Could You Please Help Me?&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 15:22:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bundle-Info-Load/m-p/267276#M100356</guid>
      <dc:creator />
      <dc:date>2013-03-31T15:22:06Z</dc:date>
    </item>
  </channel>
</rss>

