<?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: Selecting Arbitrary Time range from multibox(Year,Quater,month,day) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971264#M527997</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As of now I think the expression used to identify date range needs to be used in other objects to link them with selected date range. I need to check how it can be automatically linked to filter dates used in other objects.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Oct 2015 17:57:40 GMT</pubDate>
    <dc:creator>Digvijay_Singh</dc:creator>
    <dc:date>2015-10-14T17:57:40Z</dc:date>
    <item>
      <title>Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971255#M527988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Can someone please share knowledge..&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;How can i select arbitrary date ranges from Multibox(Year,quater,month,day)..Can you please share any qvw or video to implement...&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;IMG alt="sample3.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/101944_sample3.png" style="height: 326px; width: 620px;" /&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;thanks&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Venkat&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;A href="https://community.qlik.com/qlik-users/44008"&gt;jgd&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/142498"&gt;krishna_2644&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/191017"&gt;qlikviewwizard&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/205713"&gt;rajiqliview&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/136006"&gt;anapaula&lt;/A&gt;‌ ! !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 02:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971255#M527988</guid>
      <dc:creator />
      <dc:date>2015-10-14T02:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971256#M527989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please check the attached file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="101953" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/101953_Capture.PNG" style="height: 419px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EMP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD EMPNO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENAME,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JOB,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MGR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(DATE) as START_DATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; month(date(DATE)) as START_MONTH,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(month(date(DATE))/3) as START_QUARTER,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; year(date(DATE)) as START_YEAR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; date(DATE) as END_DATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; month(date(DATE)) as END_MONTH,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Q' &amp;amp; Ceil(month(date(DATE))/3) as END_QUARTER,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; year(date(DATE)) as END_YEAR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SALES,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DEPTNO&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;EMP.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is EMP);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEPT:&lt;/P&gt;&lt;P&gt;LOAD DEPTNO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DNAME,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNTRY&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;EMP.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is DEPT);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 03:10:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971256#M527989</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-10-14T03:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971257#M527990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;start Date and End date should be different(time range)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sample4.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/101957_sample4.png" style="height: 257px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;For your above Qvw...when i select Start_date it automatically selecting End_Date same as Start_Data...i need range of time..(like StartDate: 01-sep-2012, EndDate: 09-jul-2014) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 03:24:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971257#M527990</guid>
      <dc:creator />
      <dc:date>2015-10-14T03:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971258#M527991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sai,&lt;/P&gt;&lt;P&gt;Watch this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/67712"&gt;Selecting Arbitrary Date Ranges&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 05:07:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971258#M527991</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-10-14T05:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971259#M527992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sai,&lt;/P&gt;&lt;P&gt;Check the Attachment with the help of &lt;A href="https://community.qlik.com/qlik-users/191017"&gt;qlikviewwizard&lt;/A&gt; Data.&lt;/P&gt;&lt;P&gt;You can do it Multiple ways. I applied ListBox and MultiBox Options..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 05:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971259#M527992</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2015-10-14T05:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971260#M527993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Check this also -&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="range.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/101956_range.PNG" style="height: 246px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 05:28:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971260#M527993</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-10-14T05:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971261#M527994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Digvijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Created using Triggers right? &lt;/P&gt;&lt;P&gt;Can you please explain how can i achieve this technique... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:26:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971261#M527994</guid>
      <dc:creator />
      <dc:date>2015-10-14T12:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971262#M527995</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 used alternate states for Start and End date Multi boxes. Range Selection is shown In straight table(looking like a listbox!),&amp;nbsp; I created set analysis based expression to build range from min date of multibox 1 and max date of multibox 2. Hidden one column of straight table to make it appear like a list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression used in straight table is -&amp;nbsp; &lt;/P&gt;&lt;P&gt; - Aggr(Only({&amp;lt;Date={'&amp;gt;=$(=Min({Start}Date))&amp;lt;=$(=Max({End}Date))'}&amp;gt;}Date),Year,Quarter,Month,Date)&lt;/P&gt;&lt;P&gt;- Where Start and End are alternate states.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971262#M527995</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-10-14T12:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971263#M527996</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;Not only single object...whole Qvw should be filter according to this these filters(StartDate and EndDate).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 13:41:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971263#M527996</guid>
      <dc:creator />
      <dc:date>2015-10-14T13:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971264#M527997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As of now I think the expression used to identify date range needs to be used in other objects to link them with selected date range. I need to check how it can be automatically linked to filter dates used in other objects.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 17:57:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971264#M527997</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-10-14T17:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Arbitrary Time range from multibox(Year,Quater,month,day)</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971265#M527998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you...ya iam looking to change all objects in document according to these StartDate and EndDate. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 18:01:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Arbitrary-Time-range-from-multibox-Year-Quater-month/m-p/971265#M527998</guid>
      <dc:creator />
      <dc:date>2015-10-14T18:01:03Z</dc:date>
    </item>
  </channel>
</rss>

