<?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 group row values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412133#M817751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Aug 2017 13:50:09 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-08-30T13:50:09Z</dc:date>
    <item>
      <title>How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412124#M817742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following scenario:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the values in a field from a table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Red&lt;/P&gt;&lt;P&gt;Red&lt;/P&gt;&lt;P&gt;Blue&lt;/P&gt;&lt;P&gt;Amber&lt;/P&gt;&lt;P&gt;Green&lt;/P&gt;&lt;P&gt;Blue&lt;/P&gt;&lt;P&gt;Amber&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to group Red and Blue into a new value called Primary and group Amber and Green into a new value called Secondary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are not columns but rows in a column, if that makes sense, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412124#M817742</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412125#M817743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Match(FieldName, 'Red', 'Blue'), 'Primary', 'Secondary') as NewFieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a calculated dimension&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;If(Match(FieldName, 'Red', 'Blue'), 'Primary', 'Secondary')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:31:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412125#M817743</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-30T13:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412126#M817744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Match(Final,'Red','Blue'), 'Primary','Secondary')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:31:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412126#M817744</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-08-30T13:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412127#M817745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will that not create a new field though?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the script I have:&lt;/P&gt;&lt;P&gt;Colour Load:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; Colours, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Colours Group]/*, &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[.\User Permissions.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The rows are contained within the Colour field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412127#M817745</guid>
      <dc:creator />
      <dc:date>2017-08-30T13:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412128#M817746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try is this work for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MapTable:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mapping LOAD * Inline&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MappingName,NewGrp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber,Secondary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Green,Secondary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue,None&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber,Secondary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MainTable:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD *,ApplyMap('MapTable',Names,'None') as NewGroup;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * Inline&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Names&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Green&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:40:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412128#M817746</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-08-30T13:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412129#M817747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, This is where Sunny and Myself did&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Colour Load]:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Colours,&lt;/SPAN&gt; //&lt;/SPAN&gt;&lt;STRONG style="font-family: inherit; font-style: inherit; color: #575757; font-size: 10pt;"&gt;If(Match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;Colours&lt;/SPAN&gt;,'Red','Blue'), 'Primary','Secondary') as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;Colours&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Colours Group]/*,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[.\User Permissions.xls]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:42:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412129#M817747</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-08-30T13:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412130#M817748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to create another calculated dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:42:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412130#M817748</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-08-30T13:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412131#M817749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It will, isn't that what you want?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Color:&lt;/P&gt;&lt;P&gt;LOAD Colours&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Match(Colours, 'Red', 'Blue'), 'Primary', 'Secondary') as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Colours Group]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[.\User Permissions.xls]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:42:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412131#M817749</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-30T13:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412132#M817750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please elaborate more your question or you can try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MapTable:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mapping LOAD * Inline&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MappingName,ColoursNewGrp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber,Secondary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Green,Secondary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue,Primary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber,Secondary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MainTable:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD *,ApplyMap('MapTable',Colours,'None') as ColoursGrp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * Inline&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Colours&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Red&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Green&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Blue&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Amber&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Img10.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175115_Img10.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:48:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412132#M817750</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-08-30T13:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to group row values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412133#M817751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 13:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-group-row-values/m-p/1412133#M817751</guid>
      <dc:creator />
      <dc:date>2017-08-30T13:50:09Z</dc:date>
    </item>
  </channel>
</rss>

