<?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 PEEK does not work on inline table ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209382#M715068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the solution :&lt;/P&gt;&lt;P&gt;a QUALIFY statement occured before the code sample I posted. So the correct syntax is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vSPOTReloadDate = Peek('SPOTProperties.PropertyValue', 0, 'SPOTProperties');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So even though the PEEK function takes a 'tablename' as parameter, the fieldname needed to be fully qualified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Apr 2010 14:40:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-04-09T14:40:20Z</dc:date>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209376#M715062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the example below, the variable vSPOTReloadDate remains empty after the PEEK statement. When I try the PEEK function with a 'normally' loaded table, it works just fine. The SPOTProperties table get loaded fine.&lt;/P&gt;&lt;P&gt;I can't find this limitation in the docs. Is this by design or am I missing something here ?&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;LET vSPOTDate = MakeDate(2010,4,9);&lt;BR /&gt;LET vSPOTTime = MakeTime(12,23,56);&lt;/P&gt;&lt;P&gt;SPOTProperties:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt; [PropertyID, PropertyName, PropertyValue&lt;BR /&gt; 0,SPOTReloadDate,$(vSPOTDate)&lt;BR /&gt; 1,SPOTReloadTime,$(vSPOTTime)];&lt;BR /&gt;&lt;BR /&gt;LET vSPOTReloadDate = Peek('PropertyValue', 0, 'SPOTProperties');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 13:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209376#M715062</guid>
      <dc:creator />
      <dc:date>2010-04-09T13:37:15Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209377#M715063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jan.&lt;/P&gt;&lt;P&gt;try that code:&lt;/P&gt;&lt;P&gt;LET vSPOTDate = MakeDate(2010,4,9);&lt;BR /&gt;LET vSPOTTime = MakeTime(12,23,56);&lt;BR /&gt;&lt;BR /&gt;SPOTProperties:&lt;BR /&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;IF( PropertyID = 0, $(vSPOTDate), $(vSPOTTime)) AS PropertyValue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INLINE&lt;BR /&gt; [PropertyID, PropertyName&lt;BR /&gt; 0,SPOTReloadDate&lt;BR /&gt; 1,SPOTReloadTime];&lt;BR /&gt;&lt;BR /&gt;LET vSPOTReloadDate = Peek('PropertyValue', 0, 'SPOTProperties');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 13:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209377#M715063</guid>
      <dc:creator>sparur</dc:creator>
      <dc:date>2010-04-09T13:56:27Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209378#M715064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I create a small example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 13:58:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209378#M715064</guid>
      <dc:creator>sparur</dc:creator>
      <dc:date>2010-04-09T13:58:54Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209379#M715065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anatoly,&lt;/P&gt;&lt;P&gt;thanks for your quick answer!&lt;/P&gt;&lt;P&gt;Your solution works fine indeed, I just don't understand why ? For Qlikview, what is the difference between our solution (internally I mean)&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 14:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209379#M715065</guid>
      <dc:creator />
      <dc:date>2010-04-09T14:10:53Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209380#M715066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that in INLINE table Qlikview can't evaluate a variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 14:19:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209380#M715066</guid>
      <dc:creator>sparur</dc:creator>
      <dc:date>2010-04-09T14:19:14Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209381#M715067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it can, because if you open the table viewer and do a 'preview' the data is loaded into the table correctly.&lt;/P&gt;&lt;P&gt;I copied my code into a new empty project and there it works fine. It must be something else in my project messing things up.&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 14:22:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209381#M715067</guid>
      <dc:creator />
      <dc:date>2010-04-09T14:22:25Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209382#M715068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the solution :&lt;/P&gt;&lt;P&gt;a QUALIFY statement occured before the code sample I posted. So the correct syntax is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vSPOTReloadDate = Peek('SPOTProperties.PropertyValue', 0, 'SPOTProperties');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So even though the PEEK function takes a 'tablename' as parameter, the fieldname needed to be fully qualified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 14:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209382#M715068</guid>
      <dc:creator />
      <dc:date>2010-04-09T14:40:20Z</dc:date>
    </item>
    <item>
      <title>PEEK does not work on inline table ?</title>
      <link>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209383#M715069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you are right. Inline can evaluate variable. But I didn't understand why you use an QUALIFY statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 17:51:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/PEEK-does-not-work-on-inline-table/m-p/209383#M715069</guid>
      <dc:creator>sparur</dc:creator>
      <dc:date>2010-04-09T17:51:30Z</dc:date>
    </item>
  </channel>
</rss>

