<?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: Group in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Group/m-p/1626835#M733533</link>
    <description>Hi, Because the if ended before he get to GR1\2 You can make another field for GR1 and another to GR2 OR you can load the same code for only GR1 and only GR2 and concatenate the 3 tables. Ariel.</description>
    <pubDate>Mon, 23 Sep 2019 11:06:20 GMT</pubDate>
    <dc:creator>ariel_klien</dc:creator>
    <dc:date>2019-09-23T11:06:20Z</dc:date>
    <item>
      <title>Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1626829#M733532</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am trying to create a group in the script , and this gets executed in the output i don't see &amp;nbsp;GR1 and GR2 .&amp;nbsp;&lt;/P&gt;&lt;P&gt;how do i get this ?&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;if(WildMatch(goup,'host'),'host',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'payments'),'payments',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'roles'),'roles',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'hr'),'hr',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'dudes'),'dudes',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'check'),'check',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'pass'),'pass',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'pass','dudes','check'),'GR1',&lt;/DIV&gt;&lt;DIV&gt;if(WildMatch(goup,'pass','host','hr'),'GR2'&lt;/DIV&gt;&lt;DIV&gt;)))))))))as Create_Group&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="blob:https://community.qlik.com/af0f1947-b7ea-4ca0-b3b7-9d2ad1a0ead0" border="0" width="417" height="159" /&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1626829#M733532</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1626835#M733533</link>
      <description>Hi, Because the if ended before he get to GR1\2 You can make another field for GR1 and another to GR2 OR you can load the same code for only GR1 and only GR2 and concatenate the 3 tables. Ariel.</description>
      <pubDate>Mon, 23 Sep 2019 11:06:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1626835#M733533</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2019-09-23T11:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1626879#M733534</link>
      <description>&lt;P&gt;Is there no way to achieve this within one group?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 12:22:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1626879#M733534</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2019-09-23T12:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1626888#M733535</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;how should it work to set the datas into one group.&lt;/P&gt;&lt;P&gt;Either if statement one is right, so you get result one or the if-statement for GR is right so you get result two.&lt;/P&gt;&lt;P&gt;An if-statement quits if the first result is true.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 12:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1626888#M733535</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2019-09-23T12:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1626929#M733536</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can do something like this:&lt;/P&gt;&lt;P&gt;MainTable:&lt;BR /&gt;load * From ...;&lt;/P&gt;&lt;P&gt;Groups:&lt;BR /&gt;Load&amp;nbsp;&amp;nbsp;goup,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'host'),'host',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'payments'),'payments',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'roles'),'roles',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'hr'),'hr',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'dudes'),'dudes',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'check'),'check',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(WildMatch(goup,'pass'),'pass'))))))) as&amp;nbsp;Create_Group&lt;BR /&gt;resident&amp;nbsp;Main Table;&lt;/P&gt;&lt;P&gt;Concatenate (Groups)&lt;BR /&gt;load goup,&lt;BR /&gt;'GR1' as Create_Group&lt;BR /&gt;resident&amp;nbsp;MainTable&lt;BR /&gt;where WildMatch(goup,'pass','dudes','check');&lt;/P&gt;&lt;P&gt;Concatenate (Groups)&lt;BR /&gt;load distinct goup,&lt;BR /&gt;'GR2' as Create_Group&lt;BR /&gt;resident&amp;nbsp;MainTable&lt;BR /&gt;Where WildMatch(goup,'pass','host','hr')&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1626929#M733536</guid>
      <dc:creator>ariel_klien</dc:creator>
      <dc:date>2019-09-23T13:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1630543#M733537</link>
      <description>&lt;P&gt;Did Ariel's last post work for you?&amp;nbsp; If so, be sure to use the Accept as Solution button on that post to give him credit for the help and let others know that worked.&amp;nbsp; If you did something different, consider posting that and mark that as the solution and if you are still working on things, leave an update for us.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 14:29:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1630543#M733537</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-02T14:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Group</title>
      <link>https://community.qlik.com/t5/QlikView/Group/m-p/1630734#M733538</link>
      <description>&lt;P&gt;Your GR1 condition is true if goup = 'pass' OR 'dudes'.&amp;nbsp; However, that condition would have been met in the earlier if() and therefore the GR1 if() is not executed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are trying to create a one-to-many relationship where one goup links to many Create_Group, you should load a separate table like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Groups:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;goup, Create_Group&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;host, host&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;payments, payments&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;dudes, dudes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;pass, pass&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;pass, GR1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;dudes, GR1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;etc&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 19:06:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group/m-p/1630734#M733538</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-10-02T19:06:15Z</dc:date>
    </item>
  </channel>
</rss>

