<?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: How to pull specific deminsion for a table of multiple deminsions. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132485#M9340</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter, thank you.&amp;nbsp; I have to really learn to write everything out with the question...I really gave about 75% of the needed information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This data is coming from Excel files all ready.&amp;nbsp; Many of my sheets have associations between Plant and PN (in fact, I think all of them do). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case the data is coming from sheet Overall Usage (Plant, PN, usage, dates on this file) and sheet ROP (plant, PN, ROP (reorder point &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;).&amp;nbsp; So I am trying to match the PN/plant from both Overall Usage and ROP to the actual ROP for that plant/PN in the ROP file.&amp;nbsp; That's where I keep getting lost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jul 2018 21:21:21 GMT</pubDate>
    <dc:creator>wschefter</dc:creator>
    <dc:date>2018-07-27T21:21:21Z</dc:date>
    <item>
      <title>How to pull specific deminsion for a table of multiple deminsions.</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132482#M9337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all;&lt;/P&gt;&lt;P&gt;I am having what I believe is a simple problem to solve but I am missing the solution.&amp;nbsp; Here is the situation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to pull reorder point for specific plants and specific part numbers.&amp;nbsp; This is for a table.&amp;nbsp; I am pulling usage for 36 months for &lt;STRONG style="text-decoration: underline;"&gt;Plant A&lt;/STRONG&gt; for the specific &lt;STRONG style="text-decoration: underline;"&gt;PN&lt;/STRONG&gt;s.&amp;nbsp; Now I am trying to pull in the ROP into the table for the specific PN and plant.&amp;nbsp; Here is the data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="198"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="64"&gt;Plant&lt;/TD&gt;&lt;TD width="70"&gt;PN&lt;/TD&gt;&lt;TD width="64"&gt;ROP&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;Plant A&lt;/TD&gt;&lt;TD class="xl64"&gt;123456&lt;/TD&gt;&lt;TD class="xl63"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;Plant B&lt;/TD&gt;&lt;TD class="xl64"&gt;123456&lt;/TD&gt;&lt;TD class="xl63"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;Plant C&lt;/TD&gt;&lt;TD class="xl64"&gt;123456&lt;/TD&gt;&lt;TD class="xl63"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason I am just not seeing how to do it and I know it is a simple answer.&amp;nbsp; Any advice would be greatly appreciate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Will&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2018 23:27:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132482#M9337</guid>
      <dc:creator>wschefter</dc:creator>
      <dc:date>2018-07-26T23:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull specific deminsion for a table of multiple deminsions.</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132483#M9338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to have a smaller table (compared to the larger usage table for the plants) that contains the reorder points of all plants and part numbers. You probably have them in your source system - if not you just have to create either an inline table or an Excel workbook with a worksheet that contains them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PART_INFO:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Plant &amp;amp; '-' &amp;amp; PN AS %PlantPart,&amp;nbsp; // Key to connect it with the USAGE table&lt;/P&gt;&lt;P&gt;&amp;nbsp; ROP&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USAGE:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plant &amp;amp; '-' &amp;amp; PN AS %PlantPart,&amp;nbsp; // Key to connect it with the PART_INFO table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plant,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PN,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Usage,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp; ....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have two tables that are associated by Plant and PartNumber PN and this will give you the option of referring to the ROP just as if it was a column in the USAGE table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative if you don't want the PART_INFO table but only have the ROP added as an extra field into the USAGE table is to perform a join:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PART_INFO:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Plant,&lt;/P&gt;&lt;P&gt;&amp;nbsp; PN,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ROP&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RIGHT JOIN&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;// will do a NATURAL join using the common fields to match between the tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USAGE:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plant,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PN,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Usage,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp; ....;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2018 08:08:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132483#M9338</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-07-27T08:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull specific deminsion for a table of multiple deminsions.</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132484#M9339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which one ?&amp;nbsp;&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and how is it calculated ?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/209057_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2018 08:10:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132484#M9339</guid>
      <dc:creator>ogautier62</dc:creator>
      <dc:date>2018-07-27T08:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull specific deminsion for a table of multiple deminsions.</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132485#M9340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter, thank you.&amp;nbsp; I have to really learn to write everything out with the question...I really gave about 75% of the needed information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This data is coming from Excel files all ready.&amp;nbsp; Many of my sheets have associations between Plant and PN (in fact, I think all of them do). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case the data is coming from sheet Overall Usage (Plant, PN, usage, dates on this file) and sheet ROP (plant, PN, ROP (reorder point &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;).&amp;nbsp; So I am trying to match the PN/plant from both Overall Usage and ROP to the actual ROP for that plant/PN in the ROP file.&amp;nbsp; That's where I keep getting lost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2018 21:21:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-pull-specific-deminsion-for-a-table-of-multiple/m-p/132485#M9340</guid>
      <dc:creator>wschefter</dc:creator>
      <dc:date>2018-07-27T21:21:21Z</dc:date>
    </item>
  </channel>
</rss>

