<?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: peek() and pick() function explination pls? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617486#M1116320</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using peek function in my script like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vChart=Peek('Max',0,'Table');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am viewing the list of Variables in my application , I am not able to find the variable 'vChart'. This is happening with all the 'peek' variables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2014 08:34:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-06-04T08:34:52Z</dc:date>
    <item>
      <title>peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617481#M1116315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;peek() and pick() function explination pls?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 17:33:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617481#M1116315</guid>
      <dc:creator />
      <dc:date>2014-02-06T17:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617482#M1116316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peek() is used in the script, pick()&amp;nbsp; - on the front end.&amp;nbsp; From Help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;peek(fieldname [ , row [ , tablename ] ] ) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Returns the contents of the fieldname in the record specified by row in the internal table tablename. Data are fetched from the associative QlikView database. &lt;/P&gt;&lt;P&gt;Fieldname must be given as a string (e.g. a quoted literal). &lt;/P&gt;&lt;P&gt;Row must be an integer. 0 denotes the first record, 1 the second and so on. Negative numbers indicate order from the end of the table. -1 denotes the last record read. &lt;/P&gt;&lt;P&gt;If no row is stated, -1 is assumed. &lt;/P&gt;&lt;P&gt;Tablename is a table label, see Table Labels, without the ending colon. If no tablename is stated, the current table is assumed. If used outside the load statement or referring to another table, the tablename must be included. &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Examples:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;peek( 'Sales' ) &lt;BR /&gt;returns the value of Sales in the previous record read ( equivalent to previous(Sales) ). &lt;/P&gt;&lt;P&gt;peek( 'Sales', 2 ) &lt;BR /&gt;returns the value of Sales from the third record read from the current internal table. &lt;/P&gt;&lt;P&gt;peek( 'Sales', -2 ) &lt;BR /&gt;returns the value of Sales from the second last record read into the current internal table. &lt;/P&gt;&lt;P&gt;peek( 'Sales', 0, 'Tab1' ) &lt;BR /&gt;returns the value of Sales from the first record read into the input table labeled Tab1. &lt;/P&gt;&lt;P&gt;Load A, B, numsum( B, peek( 'Bsum' ) ) as Bsum...; &lt;BR /&gt;creates an accumulation of B in Bsum. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;pick(n, expr1[ , expr2,...exprN]) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Returns the n:th expression in the list. n is an integer between 1 and N. &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;pick( N'A''B'4, , , ) &lt;/P&gt;&lt;P&gt;returns 'B' if N = 2&lt;/P&gt;&lt;P&gt;returns 4 if N = 3&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 17:38:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617482#M1116316</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-06T17:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617483#M1116317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use pick in the script as well. Peek can only be used in the script, not in chart expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 17:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617483#M1116317</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-02-06T17:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617484#M1116318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True, thanks Gysbert.&lt;/P&gt;&lt;P&gt;In short, peek() is to fetch a field value from a logical table previously loaded in the script.&lt;/P&gt;&lt;P&gt;Pick() is to fetch an expression from the list of expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 17:47:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617484#M1116318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-06T17:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617485#M1116319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Manoj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chek the Peek() vs Previous().&lt;/P&gt;&lt;P&gt;here is the link&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/04/08/peek-vs-previous-when-to-use-each" title="http://community.qlik.com/blogs/qlikviewdesignblog/2013/04/08/peek-vs-previous-when-to-use-each"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2013/04/08/peek-vs-previous-when-to-use-each&lt;/A&gt;&lt;/P&gt;&lt;P&gt;generally Pick() function used in front end application example.we can use back end as well.&lt;/P&gt;&lt;P&gt;in front end,&lt;/P&gt;&lt;P&gt;for ex dynamically displaying color of barchart having dimension country on x axis and sum(sales) on yaxis.&lt;/P&gt;&lt;P&gt;user wants four different colors for four countries then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;expression-&amp;gt;backgroundcolor-&amp;gt;pick(match(country,'india','usa','uk'),red(),green(),blue()). like that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 18:24:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617485#M1116319</guid>
      <dc:creator />
      <dc:date>2014-02-06T18:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617486#M1116320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using peek function in my script like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vChart=Peek('Max',0,'Table');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am viewing the list of Variables in my application , I am not able to find the variable 'vChart'. This is happening with all the 'peek' variables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 08:34:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617486#M1116320</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-04T08:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617487#M1116321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go through the Qlikview Reference Manual, you will get enough information in that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 08:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617487#M1116321</guid>
      <dc:creator />
      <dc:date>2014-06-04T08:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617488#M1116322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Manoj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz follow this link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4073"&gt;Peek() vs Previous() – When to Use Each&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 08:41:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617488#M1116322</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-06-04T08:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617489#M1116323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You forget to put Let word before the statement it will be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Let &lt;/STRONG&gt;vChart = Peek('Max',0,'Table');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where in peek syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peek('FieldName' , Location Of Record from that is 0 position, 'Table Name');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 09:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617489#M1116323</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-06-04T09:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617490#M1116324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I forgot to write 'let' here but had wrote it in my script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2014 04:50:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617490#M1116324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-06T04:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: peek() and pick() function explination pls?</title>
      <link>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617491#M1116325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is very usefull .Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Dec 2015 22:02:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/peek-and-pick-function-explination-pls/m-p/617491#M1116325</guid>
      <dc:creator />
      <dc:date>2015-12-15T22:02:36Z</dc:date>
    </item>
  </channel>
</rss>

