<?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 function in txt files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796057#M1211220</link>
    <description>&lt;P&gt;hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have a txt file that im reading in, im doing a manually mid(raw data) to separate my columns. its simple in that most of the data i need are all in the same line, so i just need to parse out the column number.&amp;nbsp;&lt;/P&gt;&lt;P&gt;however i do have an issue, i have an order# that is in the heading that needs to be assigned to all relevant lines that im pulling in until a new heading comes up with a new order number etc..&lt;/P&gt;&lt;P&gt;i assume the easiest way to do this would be to do a peek function to create a separate table just for my order #s , get the min and max and join it to my main details table. put a where clause in with the min and max of the lines?&lt;/P&gt;&lt;P&gt;the only thing in common with the orders is that it will always start on col 16 and be 9 in length. with it starting on col 1 as "Order Number: " below is a screenshot of the txt file. so from the screenshot, order number 1000069385 could be attached to each line that i bring in. then there will be a new order number: 100069387 and then that number will be attached to the next lines im bringing in etc&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BSCIknowlec_1-1617200319011.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52173iD80A7AFE4A47C472/image-size/large?v=v2&amp;amp;px=999" role="button" title="BSCIknowlec_1-1617200319011.png" alt="BSCIknowlec_1-1617200319011.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would anyone know a good way to capture all my order #s in the txt file and then put it against all the lines of data until there is a new order number?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Mar 2021 14:22:15 GMT</pubDate>
    <dc:creator>BSCIknowlec</dc:creator>
    <dc:date>2021-03-31T14:22:15Z</dc:date>
    <item>
      <title>Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796057#M1211220</link>
      <description>&lt;P&gt;hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have a txt file that im reading in, im doing a manually mid(raw data) to separate my columns. its simple in that most of the data i need are all in the same line, so i just need to parse out the column number.&amp;nbsp;&lt;/P&gt;&lt;P&gt;however i do have an issue, i have an order# that is in the heading that needs to be assigned to all relevant lines that im pulling in until a new heading comes up with a new order number etc..&lt;/P&gt;&lt;P&gt;i assume the easiest way to do this would be to do a peek function to create a separate table just for my order #s , get the min and max and join it to my main details table. put a where clause in with the min and max of the lines?&lt;/P&gt;&lt;P&gt;the only thing in common with the orders is that it will always start on col 16 and be 9 in length. with it starting on col 1 as "Order Number: " below is a screenshot of the txt file. so from the screenshot, order number 1000069385 could be attached to each line that i bring in. then there will be a new order number: 100069387 and then that number will be attached to the next lines im bringing in etc&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BSCIknowlec_1-1617200319011.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52173iD80A7AFE4A47C472/image-size/large?v=v2&amp;amp;px=999" role="button" title="BSCIknowlec_1-1617200319011.png" alt="BSCIknowlec_1-1617200319011.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would anyone know a good way to capture all my order #s in the txt file and then put it against all the lines of data until there is a new order number?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 14:22:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796057#M1211220</guid>
      <dc:creator>BSCIknowlec</dc:creator>
      <dc:date>2021-03-31T14:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796107#M1211228</link>
      <description>&lt;P&gt;In the Load you can do something like:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;if (left(raw, 14) = 'Order Number:'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ,TextBetween(raw, ': ', ' ')&amp;nbsp; &amp;nbsp;// New order number&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ,Peek('OrderNumber')&amp;nbsp; &amp;nbsp;// Use current ordernumber&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;)&amp;nbsp; as OrderNumber&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This sample does something similar.&lt;/P&gt;&lt;P&gt;Qlikview Cookbook: Load Input File Containing Multiple Record Types &lt;A href="https://qlikviewcookbook.com/recipes/download-info/load-input-file-containing-multiple-record-types/" target="_blank"&gt;https://qlikviewcookbook.com/recipes/download-info/load-input-file-containing-multiple-record-types/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 16:24:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796107#M1211228</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-31T16:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796110#M1211230</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;, thanks for that. Ive actually made it easier for me to play around with by using the wizard file and parsing out the columns. so my code looks like this in my script:&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;Details:&lt;BR /&gt;LOAD [@1:7] as Account,&lt;BR /&gt;[@12:32] as [Ac Desc],&lt;BR /&gt;num([@40:55]) as [Doc Number],&lt;BR /&gt;[@70:94] as [Vendor],&lt;BR /&gt;[@143:173] as [Desc Text],&lt;BR /&gt;[@212:222] as [PO],&lt;BR /&gt;[@34:36] as [Type],&lt;BR /&gt;[@61:68] as Month,&lt;BR /&gt;num([@97:113]) as [Value],&lt;BR /&gt;[@98:113] /.8558 as Dollars&lt;BR /&gt;FROM&lt;BR /&gt;txtfile&lt;BR /&gt;(fix, codepage is 1252, no labels)&lt;BR /&gt;where num([@1:7]);&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Orders:&lt;BR /&gt;load&lt;BR /&gt;RowNo() as RawRowOrderNo,&lt;BR /&gt;If(RowNo() = 1, 0, Peek(RawRowOrderNo)) as prev, [@16:26] as Orders&lt;BR /&gt;FROM&lt;BR /&gt;txtfile&lt;BR /&gt;(fix, codepage is 1252, no labels)&lt;BR /&gt;where num([@16:26]) &amp;gt; 100000; "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so my details table has all the correct data in it and my orders table has all the correct order numbers in it now as well.&amp;nbsp; so now i just need to connect the correct order number to each line of data&lt;/P&gt;&lt;P&gt;ive been playing around with the peek function with little success so far today&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would your suggested method still work or is there another way??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 16:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796110#M1211230</guid>
      <dc:creator>BSCIknowlec</dc:creator>
      <dc:date>2021-03-31T16:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796148#M1211238</link>
      <description>&lt;P&gt;I'm not following exactly what you are trying to do with RowNo(). I think you are trying to determine the range of lines associated with the order, but that is the hard way to go.&amp;nbsp; Here's what I suggest you change.&amp;nbsp; Remove the filtering from the main load. Propagate the order number through the rows. Then filter to only valid account rows using preceding load.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Details:&lt;BR /&gt;&lt;/SPAN&gt;LOAD&lt;BR /&gt;&amp;nbsp; *,&lt;BR /&gt;Where IsNum(Account)&lt;BR /&gt;;&lt;BR /&gt;&lt;SPAN&gt;LOAD&lt;BR /&gt;if (left[@1:n],&amp;nbsp; 14) = 'Order Number:',&amp;nbsp;[@16:26], Peek('OrderNumber')) as OrderNumber,&lt;BR /&gt;[@1:7] as Account,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@12:32] as [Ac Desc],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;num([@40:55]) as [Doc Number],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@70:94] as [Vendor],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@143:173] as [Desc Text],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@212:222] as [PO],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@34:36] as [Type],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@61:68] as Month,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;num([@97:113]) as [Value],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[@98:113] /.8558 as Dollars&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;txtfile&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(fix, codepage is 1252, no labels)&lt;/SPAN&gt;&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 18:02:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796148#M1211238</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-31T18:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796155#M1211239</link>
      <description>&lt;P&gt;hi Rob,&lt;/P&gt;&lt;P&gt;yes that was what i was trying to do, i tried your method but its throwing me up synthetic tables and not pulling in the correct data(obviously something im doing wrong). i have attached the txt file as a excel file to help better understand the sample data.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i would be very grateful if possibly you could you take a look at it and see where im going wrong? apologies im a bit of a newbie with editing txt files in qlik!&amp;nbsp;&lt;/P&gt;&lt;P&gt;end result is for my data to look like this(but with a order field with the correct order #)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BSCIknowlec_0-1617215327153.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52199iE0DB1E06D4902BA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="BSCIknowlec_0-1617215327153.png" alt="BSCIknowlec_0-1617215327153.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;my code after updating with your edits:&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;Details:&lt;BR /&gt;Load *&lt;BR /&gt;//LOAD *,&amp;nbsp;&lt;BR /&gt;FROM&lt;BR /&gt;TXT File&lt;BR /&gt;(fix, codepage is 1252, no labels)&lt;BR /&gt;where num([@1:7]);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;if( left([@1:n],14) = 'Order Number:', [@16:26], Peek('OrderNumber')) as OrderNumber,&lt;BR /&gt;[@1:7] as Account,&lt;BR /&gt;[@12:32] as [Ac Desc],&lt;BR /&gt;num([@40:55]) as [Doc Number],&lt;BR /&gt;[@70:94] as [Vendor],&lt;BR /&gt;[@143:173] as [Desc Text],&lt;BR /&gt;[@212:222] as [PO],&lt;BR /&gt;[@34:36] as [Type],&lt;BR /&gt;[@61:68] as Month,&lt;BR /&gt;num([@97:113]) as [Value],&lt;BR /&gt;[@98:113] /.8558 as Dollars&lt;BR /&gt;FROM&lt;BR /&gt;TXT File&lt;BR /&gt;(fix, codepage is 1252, no labels)&lt;BR /&gt;where num([@16:26]) &amp;gt; 100000;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 18:34:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796155#M1211239</guid>
      <dc:creator>BSCIknowlec</dc:creator>
      <dc:date>2021-03-31T18:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796197#M1211251</link>
      <description>&lt;P&gt;Look at my example again. The top LOAD statement should not have the&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TXT File&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(fix, codepage is 1252, no labels)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It is a preceding load, a continuation of the one below. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 20:02:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796197#M1211251</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-31T20:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796207#M1211253</link>
      <description>&lt;P&gt;apologies rob you are correct. once i dropped that it pulled in my 97 rows that i need. however im still getting null values for the order number section?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BSCIknowlec_0-1617222309595.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52214iD5A920275EF2DE6B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BSCIknowlec_0-1617222309595.png" alt="BSCIknowlec_0-1617222309595.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would you have any idea as to why?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for troubleshooting this for me so far its really helpful&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 20:26:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796207#M1211253</guid>
      <dc:creator>BSCIknowlec</dc:creator>
      <dc:date>2021-03-31T20:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Peek function in txt files</title>
      <link>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796223#M1211258</link>
      <description>&lt;P&gt;My bad. Peek() won't work correctly in a preceding load.&amp;nbsp; You will have to filter with an Inner Join after loading all rows. This works for me:&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Details:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;if&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;( &lt;/SPAN&gt;[@1:14]&lt;SPAN class="s1"&gt; = 'Order Number:', &lt;/SPAN&gt;[@16:26]&lt;SPAN class="s1"&gt;, &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;Peek&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;('OrderNumber')) &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; OrderNumber&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@1:7] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; Account&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@12:32] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [Ac Desc]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;num&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;[@40:55]&lt;SPAN class="s1"&gt;) &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [Doc Number]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@70:94] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [Vendor]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@143:173] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [Desc Text]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@212:222] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [PO]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@34:36] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [Type]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@61:68] &lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; Month&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;num&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;[@97:113]&lt;SPAN class="s1"&gt;) &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; [Value]&lt;SPAN class="s1"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;[@98:113]&lt;SPAN class="s1"&gt; /.8558 &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;as&lt;/SPAN&gt; Dollars&lt;SPAN class="s1"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;FROM&lt;/SPAN&gt; [TXT DATA.txt]&lt;SPAN class="s1"&gt;&lt;BR /&gt;(&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;fix&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;, &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;codepage&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;is&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; 1252, &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;no&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;labels&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;)&lt;BR /&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;Inner&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;Join&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; (Details)&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; *&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;Resident&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; Details&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;where&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;IsNum&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;(&lt;/SPAN&gt;Account&lt;SPAN class="s1"&gt;)&lt;BR /&gt;;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 21:58:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Peek-function-in-txt-files/m-p/1796223#M1211258</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-03-31T21:58:01Z</dc:date>
    </item>
  </channel>
</rss>

