<?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 Grouping of values from same field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1874979#M72154</link>
    <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;I have a field consisting of below values&lt;/P&gt;
&lt;P&gt;Field1:&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;C&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;P&gt;E&lt;/P&gt;
&lt;P&gt;Here I want to group only A , B and C together and called it as 'Group1' and want to keep D as it is and the value E should not appear in the final output as shown below:-&lt;/P&gt;
&lt;P&gt;New Field:&lt;/P&gt;
&lt;P&gt;Group1,&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;P&gt;Can you please help me achieve this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Dec 2021 13:02:11 GMT</pubDate>
    <dc:creator>aatish12345</dc:creator>
    <dc:date>2021-12-24T13:02:11Z</dc:date>
    <item>
      <title>Grouping of values from same field</title>
      <link>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1874979#M72154</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;I have a field consisting of below values&lt;/P&gt;
&lt;P&gt;Field1:&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;C&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;P&gt;E&lt;/P&gt;
&lt;P&gt;Here I want to group only A , B and C together and called it as 'Group1' and want to keep D as it is and the value E should not appear in the final output as shown below:-&lt;/P&gt;
&lt;P&gt;New Field:&lt;/P&gt;
&lt;P&gt;Group1,&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;P&gt;Can you please help me achieve this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Dec 2021 13:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1874979#M72154</guid>
      <dc:creator>aatish12345</dc:creator>
      <dc:date>2021-12-24T13:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping of values from same field</title>
      <link>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1875027#M72161</link>
      <description>&lt;P&gt;HI,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try below one&lt;/P&gt;
&lt;P&gt;load *, &lt;STRONG&gt;If(Field1='A' Or Field1='B' Or Field1='C','Group1', if(Field1='D','D')) as New_Field;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;load * inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;Field1:&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;C&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;P&gt;E&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Dec 2021 04:05:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1875027#M72161</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2021-12-25T04:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping of values from same field</title>
      <link>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1875028#M72162</link>
      <description>&lt;P&gt;Can u try using applymap by creating mapping table&lt;/P&gt;</description>
      <pubDate>Sat, 25 Dec 2021 08:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1875028#M72162</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2021-12-25T08:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping of values from same field</title>
      <link>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1875416#M72180</link>
      <description>&lt;P&gt;Hi Sasikant and Anat...&lt;/P&gt;
&lt;P&gt;Both the solutions are working as expected...&lt;/P&gt;
&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;</description>
      <pubDate>Tue, 28 Dec 2021 05:05:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Grouping-of-values-from-same-field/m-p/1875416#M72180</guid>
      <dc:creator>aatish12345</dc:creator>
      <dc:date>2021-12-28T05:05:56Z</dc:date>
    </item>
  </channel>
</rss>

