<?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: Reload Script using selected date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936262#M646095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;try to see my attachment and tell me if it's different from your.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'd adapt the date format in order to have a match with your script.&lt;/P&gt;&lt;P&gt;If you can post a snippet of code or your application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know.&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Dec 2015 11:02:17 GMT</pubDate>
    <dc:creator>simospa</dc:creator>
    <dc:date>2015-12-16T11:02:17Z</dc:date>
    <item>
      <title>Reload Script using selected date</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936260#M646093</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;&lt;/P&gt;&lt;P&gt;I need to reload my data based on the date selected on the Calendar Object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Created a button and put in action to set the variable = selected date and did a reload. Problem is doesn't seem to work. Am I missing something?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;script:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;IF ([DateFrom] &amp;lt; $(vSelectedDate) AND [DateTo] &amp;gt; $(vSelectedDate), 'T', 'F') AS Status&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Button Action&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set Variable: vSelectedDate value = CalendarDateField&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reload &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 05:36:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936260#M646093</guid>
      <dc:creator>k_burata</dc:creator>
      <dc:date>2015-12-16T05:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Script using selected date</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936261#M646094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How does your variable looks like when you put it in an input box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's a number and [DateFrom] and [DateTo] are interpreted as dates, it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's not a number, but the formatted date text, but in your standard date format, try enclosing the variable in single quotes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;IF ([DateFrom] &amp;lt; '$(vSelectedDate)' AND [DateTo] &amp;gt; '$(vSelectedDate)', 'T', 'F') AS Status &lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;Resident Table;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;As you see, it's probably a matter of value formatting and interpreting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 10:51:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936261#M646094</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-16T10:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Script using selected date</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936262#M646095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;try to see my attachment and tell me if it's different from your.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'd adapt the date format in order to have a match with your script.&lt;/P&gt;&lt;P&gt;If you can post a snippet of code or your application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know.&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 11:02:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936262#M646095</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2015-12-16T11:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Script using selected date</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936263#M646096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Simone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next challenge for me is to reload it in Acess Point.&lt;/P&gt;&lt;P&gt;I need to reload data using date selected in Access Point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I do about this one?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2015 03:17:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936263#M646096</guid>
      <dc:creator>k_burata</dc:creator>
      <dc:date>2015-12-17T03:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Script using selected date</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936264#M646097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;to reload from Access Point you need use EDX.&lt;/P&gt;&lt;P&gt;Take a look here: &lt;A href="https://community.qlik.com/docs/DOC-3024"&gt;Using EDX in QlikView 11 - basic example&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/47353"&gt;Qlikview 11 EDX&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have problem please open a new thread dedicated to that issue &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2015 13:41:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Script-using-selected-date/m-p/936264#M646097</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2015-12-17T13:41:56Z</dc:date>
    </item>
  </channel>
</rss>

