<?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: Date Range Picker &amp;quot;No data available for the range selected&amp;quot; in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2114661#M19138</link>
    <description>&lt;P&gt;There is a limit of 10000 dates in Date Picker.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Date-Picker-Extension-not-able-to-filter-date-range-of-28-years/ta-p/1818596" target="_blank"&gt;https://community.qlik.com/t5/Official-Support-Articles/Date-Picker-Extension-not-able-to-filter-date-range-of-28-years/ta-p/1818596&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Maciek&lt;/P&gt;</description>
    <pubDate>Thu, 07 Sep 2023 15:26:43 GMT</pubDate>
    <dc:creator>MacB</dc:creator>
    <dc:date>2023-09-07T15:26:43Z</dc:date>
    <item>
      <title>Date Range Picker "No data available for the range selected"</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076100#M18601</link>
      <description>&lt;P&gt;I have a master calendar table with the entire date range, but when I try to select a date range, I get the message "No data available for the selected range".&lt;/P&gt;
&lt;P&gt;After some digging it looks like date format issue, but tried all possible combinations and it still doesn't filter correctly the dates you selected.&lt;BR /&gt;Attached screenshot in case it helps.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LuisNTT_0-1685007767509.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/108269i01D739838F20AC1E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LuisNTT_0-1685007767509.png" alt="LuisNTT_0-1685007767509.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Can somebody help me?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 09:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076100#M18601</guid>
      <dc:creator>LuisNTT</dc:creator>
      <dc:date>2023-05-25T09:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Date Range Picker "No data available for the range selected"</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076135#M18602</link>
      <description>&lt;P&gt;Your master calendar is linked or unlinked ? and if it is possible please share the expression.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 10:14:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076135#M18602</guid>
      <dc:creator>md_talib</dc:creator>
      <dc:date>2023-05-25T10:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Date Range Picker "No data available for the range selected"</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076156#M18604</link>
      <description>&lt;P&gt;is it possible for you to share your master calendar scrip ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it might be possible that your dates are no generated .&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 10:48:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076156#M18604</guid>
      <dc:creator>Hania</dc:creator>
      <dc:date>2023-05-25T10:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date Range Picker "No data available for the range selected"</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076205#M18605</link>
      <description>&lt;P&gt;Thanks for the responses, I'll try to answer both of them:&lt;/P&gt;
&lt;P&gt;The master calendar table is linked to the table that I require to filter the data on.&lt;BR /&gt;The expression is: date(CalendarDate,'D/M/YYYY').&lt;/P&gt;
&lt;P&gt;The script is:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MinMaxDate:
load
Min(StartDateScheduleSubject) as MinDate,
mAX(GR_EndDateScheduleSubject) as MaxDate
resident TSubjectsDatesAddendums;

Let vMinDate = peek('MinDate',-1,'MinMaxDate') -1 ;
Let vMaxDate = peek('MaxDate',-1,'MinMaxDate') ;
DropTables MinMaxDate ;

dates:
Load *,
Year(Date) &amp;amp; '/' &amp;amp; Month(Date) as monthyear,
Year(Date) as Year,
Month(Date) as Month;
// Day(Date) as Day;
Load Date($(vMinDate) + recno()) as Date
autogenerate $(vMaxDate) - $(vMinDate) ;&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 25 May 2023 12:12:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076205#M18605</guid>
      <dc:creator>LuisNTT</dc:creator>
      <dc:date>2023-05-25T12:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Date Range Picker "No data available for the range selected"</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076603#M18610</link>
      <description>&lt;P&gt;As your script working properly just do the slightly changes in line no: 8. add space between &lt;STRONG&gt;drop table&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think&amp;nbsp; you need to check your base data that you're getting.&lt;/P&gt;
&lt;P&gt;hope this helpful.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 05:45:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2076603#M18610</guid>
      <dc:creator>Hania</dc:creator>
      <dc:date>2023-05-26T05:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Date Range Picker "No data available for the range selected"</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2114661#M19138</link>
      <description>&lt;P&gt;There is a limit of 10000 dates in Date Picker.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Date-Picker-Extension-not-able-to-filter-date-range-of-28-years/ta-p/1818596" target="_blank"&gt;https://community.qlik.com/t5/Official-Support-Articles/Date-Picker-Extension-not-able-to-filter-date-range-of-28-years/ta-p/1818596&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Maciek&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 15:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Date-Range-Picker-quot-No-data-available-for-the-range-selected/m-p/2114661#M19138</guid>
      <dc:creator>MacB</dc:creator>
      <dc:date>2023-09-07T15:26:43Z</dc:date>
    </item>
  </channel>
</rss>

