<?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 select a range of dates from list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475860#M1122524</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 am happy with your suggestion in this scenario.But i have another doubt that is&lt;/P&gt;&lt;P&gt;that&lt;/P&gt;&lt;P&gt;if user selects the data like invalid range suppose start date is greater than end date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i&amp;nbsp; need show error msg like select valid range this thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can we solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Mahesh Thalluri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jan 2014 16:29:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-07T16:29:20Z</dc:date>
    <item>
      <title>How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475856#M1122520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have list box DATE. The dates are from 2006 to 2013. My user wnats to select the dates from 01/01/2007 to 31/12/2007 all at once by clicking CTRL+selections in list box with out dragging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any possibility in qlikview to get dates using BETWEEN and AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg: date BETWEEN 01/01/2007 and 20/05/2007&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please could anyone help me in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 14:57:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475856#M1122520</guid>
      <dc:creator />
      <dc:date>2014-01-07T14:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475857#M1122521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Dont have idea using BETWEEN and AND but I have below solution which I frequently using for our clients.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Create two new variables…&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;vStartDate and vEndDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Now go to Settings – Document Properties – Triggers&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Variable Event Triggers&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Select vStartDate &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;OnChange Add Action&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Add&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Select in Field&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Field = Your Date Field&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Search String = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;='&amp;gt;='&amp;amp;&lt;/SPAN&gt;&lt;STRONG style="color: gray; font-size: 9.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;EM&gt;vStartDate&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt; &amp;amp; '&amp;lt;=' &amp;amp; &lt;/SPAN&gt;&lt;STRONG style="color: gray; font-size: 9.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;EM&gt;vEndDate &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Do the same for vEndDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Now insert Input Box and add these two variables&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Go to number tab and make sure that the formatting of vStartDate and vEndDate is same as your Date Field….&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Hope this help&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 15:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475857#M1122521</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T15:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475858#M1122522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you click on the title of the list box, just type:&lt;/P&gt;&lt;P&gt;&amp;gt;=1/1/07 &amp;lt;=31/12/07&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 15:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475858#M1122522</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2014-01-07T15:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475859#M1122523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But using this method we still have to select dates by dragging..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 15:51:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475859#M1122523</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T15:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475860#M1122524</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 am happy with your suggestion in this scenario.But i have another doubt that is&lt;/P&gt;&lt;P&gt;that&lt;/P&gt;&lt;P&gt;if user selects the data like invalid range suppose start date is greater than end date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i&amp;nbsp; need show error msg like select valid range this thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can we solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Mahesh Thalluri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:29:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475860#M1122524</guid>
      <dc:creator />
      <dc:date>2014-01-07T16:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475861#M1122525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We can use condition...&lt;/P&gt;&lt;P&gt;vFromDate &amp;lt;= vStartDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For List Box Under Layout Tab....&lt;/P&gt;&lt;P&gt;and For Straight Table or Pivot Table... &lt;/P&gt;&lt;P&gt;Under General tab Calculation Condition...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:35:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475861#M1122525</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T16:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475862#M1122526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, we can display a message in text box as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(vFromDate &amp;gt; vToDate, 'Invalid Selection')&lt;/P&gt;&lt;P&gt;with Layout Condition...&lt;/P&gt;&lt;P&gt;vFromDate &amp;gt; vToDate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475862#M1122526</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T16:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475863#M1122527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a variation on the FromDate/ToDate variables that validates the input dates. &lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewcookbook.com/recipes/download-info/enter-date-from-to/" title="http://qlikviewcookbook.com/recipes/download-info/enter-date-from-to/"&gt;http://qlikviewcookbook.com/recipes/download-info/enter-date-from-to/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:48:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475863#M1122527</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-01-07T16:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475864#M1122528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks it's working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475864#M1122528</guid>
      <dc:creator />
      <dc:date>2014-01-07T16:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475865#M1122529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Amelia.&lt;/P&gt;&lt;P&gt;Have you considered using a slider ? If you set it to Multimode you can enable the users to select a range of dates and everything in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 16:55:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475865#M1122529</guid>
      <dc:creator>ngulliver</dc:creator>
      <dc:date>2014-01-07T16:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475866#M1122530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I use slider?please tell me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 17:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475866#M1122530</guid>
      <dc:creator />
      <dc:date>2014-01-07T17:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475867#M1122531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RIght Click&lt;/P&gt;&lt;P&gt;New Sheet Object&lt;/P&gt;&lt;P&gt;Slide/Calender Object&lt;/P&gt;&lt;P&gt;Input Style = Slider&lt;/P&gt;&lt;P&gt;Field = Your Date Field&lt;/P&gt;&lt;P&gt;Mode = Multi Value&lt;/P&gt;&lt;P&gt;Presentation - Scale need to change according to your need&lt;/P&gt;&lt;P&gt;But here also, user have to use slider from one date to another and it is not convenient if you have many dates as it is impossible to show all dates and also will consume more space in your sheet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 17:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475867#M1122531</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T17:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475868#M1122532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;Can you explain how the check constraint is appearing...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 18:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475868#M1122532</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T18:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475869#M1122533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;got it.... !!! thanks for this example...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 18:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475869#M1122533</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-01-07T18:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475870#M1122534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want between two dates, you can do it with one variable if one date is a fixed increment from the other.&amp;nbsp; If the number of days can vary, the two variable approach is needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of our tasks involves weekly challenges and the increment is always 7 days for those.&amp;nbsp; So we'd use something like:&lt;/P&gt;&lt;P&gt;Count(Distinct if(Date&amp;gt;=vDate AND Date&amp;lt;vDate+7, UserID, 0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also a nice ham-fisted approach to selecting all dates there are is to make another field in script year(Date) as Year, setup a listbox for that, and click on the couple of years.&amp;nbsp; Or some concats of year(Date)&amp;amp;' '&amp;amp;month(Date) as YearMonth in a listbox to handle date ranges that go from part of one year to part of the next.&amp;nbsp; (I have people pushing back on having to type anything, and pushing back on having to click on more than two things... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 19:57:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475870#M1122534</guid>
      <dc:creator>stevelord</dc:creator>
      <dc:date>2014-10-08T19:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to select a range of dates from list box</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475871#M1122535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just press enter [return] and it will be selected&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Oct 2015 06:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-a-range-of-dates-from-list-box/m-p/475871#M1122535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-03T06:12:17Z</dc:date>
    </item>
  </channel>
</rss>

