<?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: Seperate data with programing in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605540#M478995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like: if(count(distinct total &amp;lt;Job&amp;gt; Consol)&amp;gt;1,'Y','N')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Feb 2014 11:31:26 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2014-02-19T11:31:26Z</dc:date>
    <item>
      <title>Seperate data with programing</title>
      <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605539#M478994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, QV community&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to figure out some problem I need to resolve.&lt;/P&gt;&lt;P&gt;I have two dimensions that is Consol and Job. (See picture, red colour) &lt;/P&gt;&lt;P&gt;Sometimes there is many jobs in one Consol and most often there is only one Job in one Consol.&lt;/P&gt;&lt;P&gt;I need to separate the Jobs when there is many Jobs in one Consol and when there is only one Job in one Consol.&lt;/P&gt;&lt;P&gt;So if I give you an example of what I need. I need Jobs REYE000502, REYE000504, REYE000505 and REYE000506 in one table and REYE000507, REYE000508, REYE000509 and REYE000610 in another table. &lt;/P&gt;&lt;P&gt;I have an indicator that tells me if the Concol has many jobs, that is the HBL_FLAG. (See picture, blue colour)&lt;/P&gt;&lt;P&gt;But the HBL_FLAG does not tell me if a many Jobs have one Consol or not and that is what I need.&lt;/P&gt;&lt;P&gt;Can I do something to make that happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QVpic2.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/53465_QVpic2.JPG.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 11:27:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605539#M478994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-19T11:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Seperate data with programing</title>
      <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605540#M478995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like: if(count(distinct total &amp;lt;Job&amp;gt; Consol)&amp;gt;1,'Y','N')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 11:31:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605540#M478995</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-02-19T11:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Seperate data with programing</title>
      <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605541#M478996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like your idea but I don't get it right.&lt;/P&gt;&lt;P&gt;I only get N in every line.&lt;/P&gt;&lt;P&gt;Do I need do something different&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QV pic3.JPG.jpg" class="jive-image" src="/legacyfs/online/53467_QV pic3.JPG.jpg" style="width: 620px; height: 233px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 11:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605541#M478996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-19T11:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Seperate data with programing</title>
      <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605542#M478997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Isn't it the other way around? Consol to Job is a possibly 1 to many relationship; At least that's wat the image and the exaplanation say.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (COUNT(DISTINCT TOTAL &amp;lt;Consol&amp;gt; Job) &amp;gt; 1, 'Y', 'N')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 12:03:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605542#M478997</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2014-02-19T12:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Seperate data with programing</title>
      <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605543#M478998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW "...TOTAL &amp;lt;Consol&amp;gt;..." means we'll be ignoring all dimensions except Consol. Selections will still be accounted for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 12:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605543#M478998</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2014-02-19T12:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Seperate data with programing</title>
      <link>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605544#M478999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(Aggr(NODISTINCT count(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Consol&lt;/SPAN&gt;),&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Job&lt;/SPAN&gt;)&amp;gt;1,'Y','N')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 12:17:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Seperate-data-with-programing/m-p/605544#M478999</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2014-02-19T12:17:26Z</dc:date>
    </item>
  </channel>
</rss>

