<?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: Grouping dimension values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703458#M724794</link>
    <description>&lt;P&gt;I would recommend doing this in the script, by setting up a new field, Distributor_Without_Nulls, which would have the formula:&lt;/P&gt;&lt;P&gt;if(isnull(Distributor),'Others',Distributor) as Distributor_Without_Nulls&lt;/P&gt;&lt;P&gt;If you don't want to do this script-side, you could also use this code in a calculated dimension, but in this case, users would not be able to click "Others" and get the correct selections applied, I think.&lt;/P&gt;</description>
    <pubDate>Tue, 19 May 2020 13:34:27 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2020-05-19T13:34:27Z</dc:date>
    <item>
      <title>Grouping dimension values</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703456#M724793</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;Need your help on below query.&lt;/P&gt;&lt;P&gt;One of my pivot table i have used dimension called 'Distributor'&lt;/P&gt;&lt;P&gt;under Distributor i want to display &lt;STRONG&gt;Others&lt;/STRONG&gt; and null values '&lt;STRONG&gt;_&lt;/STRONG&gt;' together&amp;nbsp;&lt;/P&gt;&lt;P&gt;EX:&lt;/P&gt;&lt;TABLE width="203"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="75"&gt;Distributor&lt;/TD&gt;&lt;TD width="64"&gt;Quantity&lt;/TD&gt;&lt;TD width="64"&gt;sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;Amazon&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;flipkart&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;ebay&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;sanapdeal&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;1200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;Others&lt;/TD&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;3400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;-&lt;/TD&gt;&lt;TD&gt;27&lt;/TD&gt;&lt;TD&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected output:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="75"&gt;Distributor&lt;/TD&gt;&lt;TD width="64"&gt;Quantity&lt;/TD&gt;&lt;TD width="64"&gt;sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;Amazon&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;flipkart&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;ebay&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;sanapdeal&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;1200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;Others&lt;/TD&gt;&lt;TD&gt;45&lt;/TD&gt;&lt;TD&gt;9400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="75"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have added the calculation dimension like below&lt;/P&gt;&lt;P&gt;=if(Match([Distributor],'Amazon','flipkart','ebay','sanapdeal','Others'),[Distributor],'Others')&amp;nbsp;&lt;/P&gt;&lt;P&gt;but its not given expected out put&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks,&lt;/P&gt;&lt;P&gt;Suresh V.V&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:37:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703456#M724793</guid>
      <dc:creator>venkatasuresh</dc:creator>
      <dc:date>2024-11-16T18:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping dimension values</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703458#M724794</link>
      <description>&lt;P&gt;I would recommend doing this in the script, by setting up a new field, Distributor_Without_Nulls, which would have the formula:&lt;/P&gt;&lt;P&gt;if(isnull(Distributor),'Others',Distributor) as Distributor_Without_Nulls&lt;/P&gt;&lt;P&gt;If you don't want to do this script-side, you could also use this code in a calculated dimension, but in this case, users would not be able to click "Others" and get the correct selections applied, I think.&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 13:34:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703458#M724794</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2020-05-19T13:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping dimension values</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703646#M724795</link>
      <description>&lt;P&gt;One solution is.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=If(IsNull(Distributor) Or Distributor='Others', 'Others', Distributor)&lt;/LI-CODE&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD If(Distributor='',Null(),Distributor) As Distributor, Quantity, sales INLINE [
    Distributor, Quantity, sales
    Amazon, 14, 4000
    flipkart, 12, 2000
    ebay, 8, 3000
    sanapdeal, 6, 1200
    Others, 18, 3400
    , 27, 6000
];&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV62.PNG" style="width: 309px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/34002i33590ACCC4B7096F/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV62.PNG" alt="commQV62.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 01:12:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703646#M724795</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-05-20T01:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping dimension values</title>
      <link>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703693#M724796</link>
      <description>&lt;P&gt;Hi Thank you so much for your kind support:)&lt;/P&gt;&lt;P&gt;I fixed this issue by using apply-map&amp;nbsp; function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried both of your solutions its working fine on my local desktop,once i publish the application on access point&amp;nbsp;&lt;/P&gt;&lt;P&gt;i can see the null value '&lt;STRONG&gt;_&lt;/STRONG&gt;'&amp;nbsp; , the i tried apply map the issue got fixed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suresh V.V&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 05:53:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Grouping-dimension-values/m-p/1703693#M724796</guid>
      <dc:creator>venkatasuresh</dc:creator>
      <dc:date>2020-05-20T05:53:16Z</dc:date>
    </item>
  </channel>
</rss>

