<?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: STATIC Function Help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297816#M516233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the &lt;A href="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterRecordFunctions/Peek.htm" title="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterRecordFunctions/Peek.htm"&gt;Peek()&lt;/A&gt; function to achieve the required result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Mar 2017 22:26:20 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2017-03-28T22:26:20Z</dc:date>
    <item>
      <title>STATIC Function Help</title>
      <link>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297815#M516232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlik Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help in creating some additional fields and dragging information down (like a STATIC function in ACL). Please let me know if there is an option to that directly in Qlik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Help.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/158009_Help.PNG" style="height: 171px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is similar logic for SQL&lt;/P&gt;&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/34157966/auto-fill-field-with-value-from-above-row-value" title="http://stackoverflow.com/questions/34157966/auto-fill-field-with-value-from-above-row-value"&gt;sql - Auto fill field with value from above row value - Stack Overflow&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2017 21:50:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297815#M516232</guid>
      <dc:creator />
      <dc:date>2017-03-28T21:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: STATIC Function Help</title>
      <link>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297816#M516233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the &lt;A href="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterRecordFunctions/Peek.htm" title="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterRecordFunctions/Peek.htm"&gt;Peek()&lt;/A&gt; function to achieve the required result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2017 22:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297816#M516233</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-03-28T22:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: STATIC Function Help</title>
      <link>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297817#M516234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nina,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this code you could reach what you need. &lt;STRONG&gt;The precondition is T1 table has to be ordered properly in order to Peek() function invocations can recover the suitable value of the precedet records&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14907517735966937 jive_text_macro" jivemacro_uid="_14907517735966937" modifiedtitle="true"&gt;
&lt;P&gt;T1:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;Account&lt;/P&gt;
&lt;P&gt;Cash and Cash Equivalent&lt;/P&gt;
&lt;P&gt;1000-Cash&lt;/P&gt;
&lt;P&gt;100000&lt;/P&gt;
&lt;P&gt;100004&lt;/P&gt;
&lt;P&gt;100034&lt;/P&gt;
&lt;P&gt;Accounts Receivable&lt;/P&gt;
&lt;P&gt;2000-AR&lt;/P&gt;
&lt;P&gt;200000&lt;/P&gt;
&lt;P&gt;200009&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;T2:&lt;/P&gt;
&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Account&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS Account, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNum(Left(Account, 4)),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNum(Left(Account, 6)), &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Peek('4-digit Account', -1, 'T2'), &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Account), &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Null())&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS [4-digit Account], &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNum(Left(Account, 4)),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNum(Left(Account, 6)), &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Peek('Account Roll Up', -1, 'T2'), &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Peek('Account', -1, 'T2')), &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Null())&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS [Account Roll Up]&lt;/P&gt;
&lt;P&gt;RESIDENT T1;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt;"&gt;DROP TABLE T1;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="29-03-2017 3-46-46.png" class="jive-image image-1" src="/legacyfs/online/158015_29-03-2017 3-46-46.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attach you a sample, anyway... Hope it serves!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2017 01:47:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297817#M516234</guid>
      <dc:creator>hector_munoz</dc:creator>
      <dc:date>2017-03-29T01:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: STATIC Function Help</title>
      <link>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297818#M516235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hector,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for yur help. I was able to get through the first step. Screenshot below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="question.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/158136_question.png" style="width: 680px; height: 237px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;T1:&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Directory;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;CrossTable([BU], F1, 2)&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;LOAD&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;RECNO() AS [Record Number],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;// 10k account roll-up (two examples for now)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;IF(F1 = 'Cash_Cash_Equiv - Cash and Cash Equiv','10k - Cash and Cash Equivalents',&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;IF(F1 = 'ST_Investments - Short term Investments (91 days to a year)','10k - Short-term Investments',F1)) AS Account,&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;FROM&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;[Excel File.xlsx]&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;(ooxml, embedded labels, table is [Balance Sheet], filters(&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 11)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 10)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 9)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 7)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 6)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 5)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 4)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 3)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 2)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Remove(Row, Pos(Top, 1))&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;T2:&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;LOAD&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;[Record Number],&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;Account AS Account,&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;IF(IsNum(Left(Account,4)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;If(IsNum(Left(Account,8)),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;Peek('4-digit Account', -1, 'T2'),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;Account),&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;Null())&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;AS [4-digit Account],&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Left(Account,3) = '10k',&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Peek('10k Rollup', -1, 'T2'),&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Peek('Account', -1, 'T2')),&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Null()&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;AS [10k Rollup]&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;SPAN class="m_-5440954432330259126gmail-Apple-tab-span"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;RESIDENT T1 ORDER BY [Record Number];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;DROP TABLE T1;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;However, I still need to populate 10k rollup column with lines from account field that have 10-k in fron of it, for example for all cash accounts in 4-digit account filed i need to have '10k-Cash and Cash Equivalents" in the 10k Rollup field. Could you please advise how that can be done?&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;&lt;/P&gt;&lt;P style="color: #222222; text-indent: 0px; font-family: arial, sans-serif; font-size: 12.8px; font-style: normal; font-weight: normal;"&gt;Thank you-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2017 16:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297818#M516235</guid>
      <dc:creator />
      <dc:date>2017-03-29T16:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: STATIC Function Help</title>
      <link>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297819#M516236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nina,&lt;/P&gt;&lt;P&gt;I am afraid I donot know how to help you unless you attach a sample of the original files... Could you?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 04:00:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STATIC-Function-Help/m-p/1297819#M516236</guid>
      <dc:creator>hector_munoz</dc:creator>
      <dc:date>2017-03-30T04:00:59Z</dc:date>
    </item>
  </channel>
</rss>

