<?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: Difference between Peek and Previous Function give me an example in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649890#M731175</link>
    <description>&lt;P&gt;Kindly look this...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/Peek-and-Previous-Function/m-p/1299519" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/Peek-and-Previous-Function/m-p/1299519&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Nov 2019 05:43:48 GMT</pubDate>
    <dc:creator>prma7799</dc:creator>
    <dc:date>2019-11-22T05:43:48Z</dc:date>
    <item>
      <title>Difference between Peek and Previous Function give me an example</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649878#M731173</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I am new to Qlikview&lt;/P&gt;&lt;P&gt;Difference between Peek and Previous Function give me an example&amp;nbsp;&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649878#M731173</guid>
      <dc:creator>jonesbrown</dc:creator>
      <dc:date>2024-11-16T19:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Peek and Previous Function give me an example</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649886#M731174</link>
      <description>&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/InterRecordFunctions/Peek.htm" target="_self"&gt;Peek()&lt;/A&gt; looks in your destination table&amp;nbsp; but &lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/InterRecordFunctions/Previous.htm" target="_self"&gt;Previous()&lt;/A&gt; refers to your source table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Consider this script:&lt;/P&gt;&lt;LI-CODE lang="php"&gt;TMP:
LOAD * inline [
FIELD
A
B
C
D
E
];

LOAD 
  '#'  &amp;amp; RowNo() &amp;amp; FIELD as FIELD ,
  FIELD as [Original],
  Peek(FIELD) as [Peek],
  Previous(FIELD) as [Previous]
Resident TMP;

DROP TABLE TMP;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output will look like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 442px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/24218i3EC16397DCC10919/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 07:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649886#M731174</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-11-22T07:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Peek and Previous Function give me an example</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649890#M731175</link>
      <description>&lt;P&gt;Kindly look this...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/Peek-and-Previous-Function/m-p/1299519" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/Peek-and-Previous-Function/m-p/1299519&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 05:43:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649890#M731175</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2019-11-22T05:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Peek and Previous Function give me an example</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649913#M731176</link>
      <description>&lt;P&gt;&lt;A href="https://www.qliktastic.com/2016/02/08/qlikview-previous-and-peek-are-not-the-same/" target="_blank"&gt;https://www.qliktastic.com/2016/02/08/qlikview-previous-and-peek-are-not-the-same/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Go through this article. It will help you for your answer&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 07:07:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Peek-and-Previous-Function-give-me-an-example/m-p/1649913#M731176</guid>
      <dc:creator>ashwanin</dc:creator>
      <dc:date>2019-11-22T07:07:31Z</dc:date>
    </item>
  </channel>
</rss>

