<?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 séquence in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/s%C3%A9quence/m-p/2237242#M25735</link>
    <description>&lt;P&gt;Hello everyone&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have an input file with 2 columns (id, type), for the same id we can end up with the same type, like this:&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'A'&lt;/P&gt; 
&lt;P&gt;id = 2 -&amp;gt; type = 'C'&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'A'&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'A'&lt;/P&gt; 
&lt;P&gt;id = 3 -&amp;gt; type = 'H'&lt;/P&gt; 
&lt;P&gt;id = 5 -&amp;gt; type = 'K'&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'E'&lt;/P&gt; 
&lt;P&gt;.&lt;/P&gt; 
&lt;P&gt;.&lt;/P&gt; 
&lt;P&gt;.&lt;/P&gt; 
&lt;P&gt;And so on&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;So there is a management rule that says that:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;for a type equal to 'A' return '300'. If a second type = 'A' exists for the same id return 301. If a third type = 'A' exists for the same id return 302, ... so on. kind like a sequence&lt;/P&gt; 
&lt;P&gt;I already started using the taggregateRow component to group on id and type and I add a 3rd column to the taggregateRow component output that counts the number of tpye for an id, and then I do not know too much I will continue&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;it will be really nice if someone can help me the top&lt;/P&gt;</description>
    <pubDate>Fri, 05 Apr 2019 10:52:31 GMT</pubDate>
    <dc:creator>RHZ123</dc:creator>
    <dc:date>2019-04-05T10:52:31Z</dc:date>
    <item>
      <title>séquence</title>
      <link>https://community.qlik.com/t5/Talend-Studio/s%C3%A9quence/m-p/2237242#M25735</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have an input file with 2 columns (id, type), for the same id we can end up with the same type, like this:&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'A'&lt;/P&gt; 
&lt;P&gt;id = 2 -&amp;gt; type = 'C'&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'A'&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'A'&lt;/P&gt; 
&lt;P&gt;id = 3 -&amp;gt; type = 'H'&lt;/P&gt; 
&lt;P&gt;id = 5 -&amp;gt; type = 'K'&lt;/P&gt; 
&lt;P&gt;id = 1 -&amp;gt; type = 'E'&lt;/P&gt; 
&lt;P&gt;.&lt;/P&gt; 
&lt;P&gt;.&lt;/P&gt; 
&lt;P&gt;.&lt;/P&gt; 
&lt;P&gt;And so on&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;So there is a management rule that says that:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;for a type equal to 'A' return '300'. If a second type = 'A' exists for the same id return 301. If a third type = 'A' exists for the same id return 302, ... so on. kind like a sequence&lt;/P&gt; 
&lt;P&gt;I already started using the taggregateRow component to group on id and type and I add a 3rd column to the taggregateRow component output that counts the number of tpye for an id, and then I do not know too much I will continue&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;it will be really nice if someone can help me the top&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 10:52:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/s%C3%A9quence/m-p/2237242#M25735</guid>
      <dc:creator>RHZ123</dc:creator>
      <dc:date>2019-04-05T10:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: séquence</title>
      <link>https://community.qlik.com/t5/Talend-Studio/s%C3%A9quence/m-p/2237243#M25736</link>
      <description>&lt;P&gt;you can use routine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Numeric.sequence(row1.Type,300,1)&lt;/P&gt;&lt;P&gt;in this case if&amp;nbsp;row1.Type=A&lt;/P&gt;&lt;P&gt;1st occurrence of A , will be 300&lt;/P&gt;&lt;P&gt;2nd&amp;nbsp;occurrence of A , will be 301&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same if&amp;nbsp;row1.Type=B&lt;/P&gt;&lt;P&gt;1st occurrence of B , will be 300&lt;/P&gt;&lt;P&gt;2nd&amp;nbsp;occurrence of B , will be 301&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 14:04:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/s%C3%A9quence/m-p/2237243#M25736</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-04-05T14:04:49Z</dc:date>
    </item>
  </channel>
</rss>

