<?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: List Box Issue in Function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305391#M844594</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be using firstsortedvalue() function??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Apr 2017 08:57:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-04-12T08:57:51Z</dc:date>
    <item>
      <title>List Box Issue in Function</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305390#M844593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have an requirement to show Week No along with Week StartDay.&lt;/P&gt;&lt;P&gt;But Week is Fiscal Week and Start Date is Calendar Date in DB like below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/159825_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;In Qlik Also it is showing same way.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/159826_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I want to pick up the first Value of min Value of date.&lt;/P&gt;&lt;P&gt;So in Week-Date list box it should only show 3(10/9/2016).&lt;/P&gt;&lt;P&gt;Can u please check and suggest how to do this. I tried to use min function in List Box expression. It did not work&lt;/P&gt;&lt;P&gt;I am attaching my qvw file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sarif&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/List-Box-Issue-in-Function/m-p/1305390#M844593</guid>
      <dc:creator>mhmmd_srf</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Issue in Function</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305391#M844594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be using firstsortedvalue() function??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 08:57:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305391#M844594</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-12T08:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Issue in Function</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305392#M844595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about doing it this way where you add expression on the expressions tab and use a single fiscalweek field for your list box field&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/159848_Capture.PNG" style="height: 281px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE: Updated the sample because of some error before&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 09:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305392#M844595</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-04-12T09:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Issue in Function</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305393#M844597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohammad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can add an extra left join in the script where you flag the first value. That would be something like;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN (DIM_DATE) LOAD&lt;/P&gt;&lt;P&gt;DIM_DATE.CstFiscalYear,&lt;/P&gt;&lt;P&gt;DIM_DATE.CstFiscalWeek,&lt;/P&gt;&lt;P&gt;MIN(DIM_DATE.CstWeekBeginDate) AS DIM_DATE.CstWeekBeginDate,&lt;/P&gt;&lt;P&gt;1 AS DIM_DATE.MIN_Date&lt;/P&gt;&lt;P&gt;RESIDENT DIM_DATE;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 09:50:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Issue-in-Function/m-p/1305393#M844597</guid>
      <dc:creator>avkeep01</dc:creator>
      <dc:date>2017-04-12T09:50:52Z</dc:date>
    </item>
  </channel>
</rss>

