<?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 Customized Value List in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215751#M517896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;My requirement is i need to show all the MTD,QTD,YTD for both value1,value3.But for value2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;only MTD should display. And the lable name should be displayed as 'Compression' instead of MTD. Please find the following attachment and kindly help me with this&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>Sun, 05 Feb 2017 16:36:02 GMT</pubDate>
    <dc:creator>pgrs4219</dc:creator>
    <dc:date>2017-02-05T16:36:02Z</dc:date>
    <item>
      <title>Customized Value List</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215751#M517896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;My requirement is i need to show all the MTD,QTD,YTD for both value1,value3.But for value2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;only MTD should display. And the lable name should be displayed as 'Compression' instead of MTD. Please find the following attachment and kindly help me with this&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>Sun, 05 Feb 2017 16:36:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215751#M517896</guid>
      <dc:creator>pgrs4219</dc:creator>
      <dc:date>2017-02-05T16:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Customized Value List</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215752#M517897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this approach by adding this to your script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dim:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dim1, Dim2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2, 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then use three dimensions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) &lt;STRONG&gt;Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2)&lt;STRONG&gt; =Pick(Dim1, 'value1', 'value2', 'value3') &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;3) &lt;STRONG&gt;=Pick(Dim2, 'MTD', 'QTD', 'YTD')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pick(Dim2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 1, sum({$&amp;lt;Date = {"$(=rMTD)"}&amp;gt;} Sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 2, sum({$&amp;lt;Date = {"$(=rMTD)"}&amp;gt;} Budget),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 3, sum({$&amp;lt;Date = {"$(=rMTD)"}&amp;gt;} Forecast)))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 1, sum({$&amp;lt;Date = {"$(=rQTD)"}&amp;gt;} Sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 2, sum({$&amp;lt;Date = {"$(=rQTD)"}&amp;gt;} Budget),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 3, sum({$&amp;lt;Date = {"$(=rQTD)"}&amp;gt;} Forecast)))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 1, sum({$&amp;lt;Date = {"$(=rYTD)"}&amp;gt;} Sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 2, sum({$&amp;lt;Date = {"$(=rYTD)"}&amp;gt;} Budget),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Dim1 = 3, sum({$&amp;lt;Date = {"$(=rYTD)"}&amp;gt;} Forecast))))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/152060_Capture.PNG" style="height: 118px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Feb 2017 17:49:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215752#M517897</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-05T17:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Customized Value List</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215753#M517898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sunny, thanks for your reply.its not working here.if possible could you please provide me the sample Qvw. And if you know any other work around please provide. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Feb 2017 21:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215753#M517898</guid>
      <dc:creator>pgrs4219</dc:creator>
      <dc:date>2017-02-05T21:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Customized Value List</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215754#M517899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you open this link: &lt;A href="https://community.qlik.com/message/1206572"&gt;Re: Customized Value List&lt;/A&gt;, you will see that I have already attached the qvw for you to look at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Feb 2017 21:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215754#M517899</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-05T21:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Customized Value List</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215755#M517900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The approach that you said is fine,but i have more charts same like the one that i have given as example in those charts few charts have more columns &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MTD,Q&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TD,Y&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TD, AVG MTD, AVG QTD,AVG YTD .....etx.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt; But i can't add that many fields&amp;nbsp; in the DIM Table as its not the ideal solution. so is there any way that we can still use the &lt;STRONG&gt;value list&lt;/STRONG&gt; and Hiding the unwanted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2017 13:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215755#M517900</guid>
      <dc:creator>pgrs4219</dc:creator>
      <dc:date>2017-02-06T13:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Customized Value List</title>
      <link>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215756#M517901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure why DIM is not the ideal solution? I mean either you create dimension in script or front end, what difference does it really makes? You might be able to replicate the same using ValueList(). I can try it out in the evening.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2017 13:50:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customized-Value-List/m-p/1215756#M517901</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-06T13:50:42Z</dc:date>
    </item>
  </channel>
</rss>

