<?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: How to skip to next record in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294578#M404294</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used this. I am sorry if i misunderstand the expected result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Where Len(SALES_TARGET_MET)&amp;gt;0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;LINE_ID, SALESPERSON, SALES_TARGET_MET&lt;/P&gt;&lt;P&gt;1, BOB, Y&lt;/P&gt;&lt;P&gt;2, RAY,&lt;/P&gt;&lt;P&gt;3, SMITH,N&lt;/P&gt;&lt;P&gt;4, ALLEN, N&lt;/P&gt;&lt;P&gt;5, TOBY,&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/159643_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Apr 2017 15:17:15 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2017-04-10T15:17:15Z</dc:date>
    <item>
      <title>How to skip to next record</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294574#M404290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I want to know how to tell qlikview to skip to the next record if for instance a value is blank. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I want to say for instance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If len(SALES_PERSON)&amp;lt;1&amp;nbsp; /// SALES_PERSON FIELD IS BLANK &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; then skip to next record&amp;nbsp;&amp;nbsp;&amp;nbsp; ////MOVE ONTO NEXT RECORD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 14:11:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294574#M404290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-10T14:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip to next record</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294575#M404291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you doing this? In the script? Would you be able to share few rows of data and the output you are hoping to see?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 14:12:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294575#M404291</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-04-10T14:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip to next record</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294576#M404292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;where previous(len(SALES_PERSON)&amp;gt;=1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;where not previous(len(SALES_PERSON)&amp;lt;1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It depends how you like to deal with null() and the first row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 14:13:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294576#M404292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-10T14:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip to next record</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294577#M404293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ignoring the field names I put in my original post, to make it simpler if I have a field ie SALES_TARGET_MET which is a mandatory field and allows either YES / NO. All I want to do is filter out any of the unanswered ones &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So&amp;nbsp; I currently have : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[ &lt;/P&gt;&lt;P&gt;LINE_ID, SALESPERSON, &lt;SPAN style="font-size: 13.3333px;"&gt;SALES_TARGET_MET&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1, BOB, Y&lt;/P&gt;&lt;P&gt;2, RAY, &lt;/P&gt;&lt;P&gt;3, SMITH,N&lt;/P&gt;&lt;P&gt;4, ALLEN, N&lt;/P&gt;&lt;P&gt;5, TOBY,&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to filter out the unanswered questions and return the following &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;[ &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LINE_ID, SALESPERSON, &lt;SPAN style="font-size: 13.3333px;"&gt;SALES_TARGET_MET&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;1, BOB, Y&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;3, SMITH,N&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;4, ALLEN, N&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 15:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294577#M404293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-10T15:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip to next record</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294578#M404294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used this. I am sorry if i misunderstand the expected result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Where Len(SALES_TARGET_MET)&amp;gt;0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;LINE_ID, SALESPERSON, SALES_TARGET_MET&lt;/P&gt;&lt;P&gt;1, BOB, Y&lt;/P&gt;&lt;P&gt;2, RAY,&lt;/P&gt;&lt;P&gt;3, SMITH,N&lt;/P&gt;&lt;P&gt;4, ALLEN, N&lt;/P&gt;&lt;P&gt;5, TOBY,&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/159643_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 15:17:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294578#M404294</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-10T15:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip to next record</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294579#M404295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * resident YOURTABLE where len(trim(SALESPERSON, &lt;SPAN style="font-size: 13.3333px;"&gt;SALES_TARGET_MET))&amp;lt;&amp;gt;0;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 15:18:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-skip-to-next-record/m-p/1294579#M404295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-10T15:18:53Z</dc:date>
    </item>
  </channel>
</rss>

