<?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: Fill the Previous Record value in Current Record based on Max_year in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202393#M4107</link>
    <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQNDAA4"&gt;@lli&lt;/A&gt;&amp;nbsp;, in tmap you create a variable filed do the below way.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;row1.branch ==null?Var.branch:&amp;nbsp;row1.branch&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;row1.branch&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Apr 2020 09:32:57 GMT</pubDate>
    <dc:creator>manodwhb</dc:creator>
    <dc:date>2020-04-14T09:32:57Z</dc:date>
    <item>
      <title>Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202392#M4106</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have scenario like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;s_id,year,branch&lt;/P&gt;&lt;P&gt;10,1,ECE&lt;/P&gt;&lt;P&gt;10,2,&lt;/P&gt;&lt;P&gt;11,3,CSE&lt;/P&gt;&lt;P&gt;11,4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output will be&amp;nbsp;&lt;/P&gt;&lt;P&gt;s_id,year,branch&lt;/P&gt;&lt;P&gt;10,1,ECE&lt;/P&gt;&lt;P&gt;10,2,ECE&lt;/P&gt;&lt;P&gt;11,3,CSE&lt;/P&gt;&lt;P&gt;11,4,CSE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Find the student max year id based on s_id and pass the previous branch value to the current branch&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;give me suggestions???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202392#M4106</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2024-11-16T02:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202393#M4107</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQNDAA4"&gt;@lli&lt;/A&gt;&amp;nbsp;, in tmap you create a variable filed do the below way.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;row1.branch ==null?Var.branch:&amp;nbsp;row1.branch&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;row1.branch&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 09:32:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202393#M4107</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2020-04-14T09:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202394#M4108</link>
      <description>&lt;P&gt;I mean pass the branch value for maximum year of student id&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 10:00:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202394#M4108</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-04-14T10:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202395#M4109</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQNDAA4"&gt;@lli&lt;/A&gt;&amp;nbsp;, take the variable fileds for branch and s_id and do the below way .firdt sort the data on S_id ans then use tmap and implement below logic.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;row1.S_id==Var.S_id &amp;amp;&amp;amp; row1.branch ==null?Var.branch:&amp;nbsp;row1.branch&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 10:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202395#M4109</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2020-04-14T10:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202396#M4110</link>
      <description>&lt;P&gt;not getting the desired output&amp;nbsp;&lt;/P&gt;&lt;P&gt;see the screen shots&amp;nbsp;&lt;/P&gt;&lt;P&gt;input:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;s_id,year,branch&lt;BR /&gt;10,1,ece&lt;BR /&gt;10,2,null&lt;BR /&gt;11,3,cse&lt;BR /&gt;11,4,null&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i want to pass the branch value if student year id is maximum&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyLY"&gt;Screenshot (29).png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyIg"&gt;Screenshot (30).png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyLn"&gt;Screenshot (31).png&lt;/A&gt;</description>
      <pubDate>Tue, 14 Apr 2020 10:31:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202396#M4110</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-04-14T10:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202397#M4111</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQNDAA4"&gt;@lli&lt;/A&gt;&amp;nbsp;,can you move dow var1 and var2 after var3.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 10:35:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202397#M4111</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2020-04-14T10:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fill the Previous Record value in Current Record based on Max_year</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202398#M4112</link>
      <description>&lt;P&gt;ya but same result&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Ly7c"&gt;Screenshot (32).png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Ly7z"&gt;Screenshot (33).png&lt;/A&gt;</description>
      <pubDate>Tue, 14 Apr 2020 10:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Fill-the-Previous-Record-value-in-Current-Record-based-on-Max/m-p/2202398#M4112</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-04-14T10:38:01Z</dc:date>
    </item>
  </channel>
</rss>

