<?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: Change an indicator dynamically according to the previous lines in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333852#M102590</link>
    <description>&lt;P&gt;There is an easy way to do this. First you need to sort your data however you want it ordered. Then put it through a tMap.  In a tMap variable, add a variable which uses the routines.Numeric.sequence(&lt;B&gt;null&lt;/B&gt;, 0, 0) method. Replace null with something like "DateCount" and replace the last 0 with 1. What this will do is create a count for every date you get. So you can use this count the number of dates or just see if it is greater than 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the variable as an output value. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your variable is called "DateCountVar", you would add it to your output column with a bit of code like this....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Var.DateCountVar&amp;gt;0? 1 : 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That means, if it is greater than 0, set it to 1 otherwise set it to 0. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now this won't be the most memory efficient way of doing this, but it will work and I doubt you will get too many issues doing it this way.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Nov 2022 16:37:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-11-30T16:37:50Z</dc:date>
    <item>
      <title>Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333847#M102585</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a rather complex case and I don't know how to proceed. My process should be as follows : for example, I have 50 rows (3 columns : id, date, indicator) to insert in the database.&lt;/P&gt;&lt;P&gt;I have to insert row by row, run an SQL query that checks if the date value already exists, then update the row (indicator column : 0 if the date does not exist : 1 if it does). And I repeat 50 times because there are 50 rows. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Demonstration of what I want :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Insert row 1 : 1; 11/17/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 2 : 2; 17/11/22; &lt;B&gt;1&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 3 : 3; 17/11/22; &lt;B&gt;1&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 4 : 4; 18/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 5 : 5; 19/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 6 : 6; 20/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 7 : 7; 19/11/22; &lt;B&gt;1&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 8 : 8; 19/11/22; &lt;B&gt;1&lt;/B&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to do this and maybe the most optimized method because I imagine that doing this process iteratively 50 times is costly in performance. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or another idea is to insert all the lines once, which gives :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Demonstration of what I currently have&amp;nbsp; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Insert row 1 : 1; 17/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 2 : 2; 17/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 3 : 3; 17/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 4 : 4; 18/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 5 : 5; 19/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 6 : 6; 20/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 7 : 7; 19/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Insert row 8 : 8; 19/11/22; &lt;B&gt;0&lt;/B&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a code or using components, a technique to read the date of each line and check if this date is present in a previous line. In this case, set the indicator to 1 otherwise leave it at 0.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333847#M102585</guid>
      <dc:creator>stephbzr</dc:creator>
      <dc:date>2024-11-15T22:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333848#M102586</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Talend CDC feature can capture the data changes in the source table, and then you are able to synchronize these change data to target application.&lt;/P&gt;&lt;P&gt;Please refer to this online documentation: &lt;A href="https://help.talend.com/r/v1gKwoUh8Jk9o1eXV9QQCw/A2cjGroXpaqjvQokIlqSzg" alt="https://help.talend.com/r/v1gKwoUh8Jk9o1eXV9QQCw/A2cjGroXpaqjvQokIlqSzg" target="_blank"&gt;TalendHelpCenter: Change Data Capture (CDC)&lt;/A&gt; and let us know if it is what you are looking for.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 03:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333848#M102586</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-18T03:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333849#M102587</link>
      <description>&lt;P&gt;Hello @Stéphane Barbezier​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A little bit out of the box thinking but during insert we could try and run a sql query to look up the value of the column. In case your database support it you could use the Advanced Settings -&amp;gt;Additional Columns field and define an SQL Expression.&lt;/P&gt;&lt;P&gt;https://help.talend.com/r/en-US/8.0/mysql/tmysqloutput-tmap-trowgenerator-trowgenerator-inserting-column-and-altering-data-using-tmysqloutput-standard-component-this&lt;/P&gt;&lt;P&gt;So at the end of the day your generated query would be:&lt;/P&gt;&lt;P&gt;INSERT INTO table (col1, col2, col3) VALUES ( ? , ? , (CASE WHEN (SELECT count(*) FROM table WHERE date = ? ) = 0 THEN 0 ELSE 1 END) );&lt;/P&gt;&lt;P&gt;So by using SQL Expression to Replace Date we could do a lookup.&lt;/P&gt;&lt;P&gt;Most likely this won't be compatible with Batch Mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Balázs&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 09:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333849#M102587</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-22T09:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333850#M102588</link>
      <description>&lt;P&gt;Hello @Xiaodi Shi​&amp;nbsp;and @Balazs Gunics​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I admit that I don't really understand your solutions and whether they really apply to what I'm looking for. I will show you precisely the concrete case I am trying to solve. Here is the process :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an SQL query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;select ID_HIST&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;from HIST690 h&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;where h.HIST_DATCPT = '03/12/21';&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The determining field is the date. If the query doesn't return any result then I set the value of a column to 0 otherwise to 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are the two columns and the expected result of the process : &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDGKCAA4.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155225i43D8080178D53B61/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDGKCAA4.png" alt="0695b00000aDGKCAA4.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, this is what I get&amp;nbsp;: &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDGN1AAO.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144033i311540478D2FEC63/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDGN1AAO.png" alt="0695b00000aDGN1AAO.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I did in Talend : &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;tDBInput &lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDGXvAAO.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133447i4E9F3A1CB75E464C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDGXvAAO.png" alt="0695b00000aDGXvAAO.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDGP2AAO.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/129298iC42966821BA940F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDGP2AAO.png" alt="0695b00000aDGP2AAO.png" /&gt;&lt;/span&gt;&lt;B&gt;tMap&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDGQAAA4.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156484i7ABEE383A3770E2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDGQAAA4.png" alt="0695b00000aDGQAAA4.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDGQeAAO.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/132500i8FA3E7EA528E4B71/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDGQeAAO.png" alt="0695b00000aDGQeAAO.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And so I get the impression that it finds 0 for a given date, but that this value is stored for the same date even if it comes after. I don't think the process I did in Talend is what I want, which is :&lt;/P&gt;&lt;P&gt;1) Runs the query a first time and depending on my condition, returns me 0 or 1, then inserts it into the database.&lt;/P&gt;&lt;P&gt;2) Run the query a second time (while considering the previous insertion) and depending on my condition, return 0 or 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this process for as many rows as I have to process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This would be a process of the type: search the database, then insert iteratively, whereas in my process, it is search everything at once, then insert at once.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I make this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or imagine a solution that returns 1 when the same date is found for the second and subsequent times (except for the first time). I'm trying to think of what I can do, but I admit I'm at my limits of Talend technical knowledge to apply this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 14:43:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333850#M102588</guid>
      <dc:creator>stephbzr</dc:creator>
      <dc:date>2022-11-30T14:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333851#M102589</link>
      <description>&lt;P&gt;Make sure that you're not using Batched output. So every record you insert to the database will be visible instantly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the tMap try to change the Lookup Model:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDHJPAA4.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/128208i9D64345171A063EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDHJPAA4.png" alt="0695b00000aDHJPAA4.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What this will do is:&lt;/P&gt;&lt;P&gt;For the incoming row it puts the row2.newColumn value to the globalMap.&lt;/P&gt;&lt;P&gt;Then it triggers the lookup flow and reloads all the data. (If this is coming from your database then it will call the DBInput)&lt;/P&gt;&lt;P&gt;On this input you could use a &lt;I&gt;where HIST_DATCPT = '" + (String)globalMap.get("hist_datcpt") +"  &lt;/I&gt; (this would minimalize the number of records we receive)&lt;/P&gt;&lt;P&gt;You could also make that a query that returns the key , value:&lt;/P&gt;&lt;P&gt;&lt;B&gt;" SELECT &lt;I&gt;'" + (String)globalMap.get("hist_datcpt") +" '  as hist_datctp, &lt;/I&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt; CASE WHEN count(*) = 0 THEN 0 ELSE 1 END as value&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;from HIST690 h&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;where h.HIST_DATCPT = '03/12/21';"&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then join this. Basically this way for each input you execute a lookup query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 15:37:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333851#M102589</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-30T15:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333852#M102590</link>
      <description>&lt;P&gt;There is an easy way to do this. First you need to sort your data however you want it ordered. Then put it through a tMap.  In a tMap variable, add a variable which uses the routines.Numeric.sequence(&lt;B&gt;null&lt;/B&gt;, 0, 0) method. Replace null with something like "DateCount" and replace the last 0 with 1. What this will do is create a count for every date you get. So you can use this count the number of dates or just see if it is greater than 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the variable as an output value. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your variable is called "DateCountVar", you would add it to your output column with a bit of code like this....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Var.DateCountVar&amp;gt;0? 1 : 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That means, if it is greater than 0, set it to 1 otherwise set it to 0. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now this won't be the most memory efficient way of doing this, but it will work and I doubt you will get too many issues doing it this way.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 16:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333852#M102590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-30T16:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333853#M102591</link>
      <description>&lt;P&gt;Hello @Balazs Gunics​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for this example. I have tried the different methods and the processing time of my job is getting longer and the result is not what I expected. I did as in your screenshot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But thanks for the discovery of this globalMap Key feature, I didn't know it because I never needed to use it. I will read up on it &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 09:51:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333853#M102591</guid>
      <dc:creator>stephbzr</dc:creator>
      <dc:date>2022-12-02T09:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333854#M102592</link>
      <description>&lt;P&gt;Hello @Richard Hall​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for this very effective solution. I have read a bit of the documentation on Numeric.sequence(). I have adapted the solution to my case and it works very well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had 3 different dates (02/05/2022, 03/05/2022 and 05/05/2022) in a field of my database. In the case below, I removed the rows with 05/05/2022 before running the job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDvTFAA0.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130887iFC6F38A3E7B9DD82/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDvTFAA0.png" alt="0695b00000aDvTFAA0.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000aDvSgAAK.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134454i8281985953DA41BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000aDvSgAAK.png" alt="0695b00000aDvSgAAK.png" /&gt;&lt;/span&gt;So, I don't know why, but it's with the last two arguments in 0 that it increments and my result is the expected one. I tried with 1 too, but it is not the case.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 13:11:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333854#M102592</guid>
      <dc:creator>stephbzr</dc:creator>
      <dc:date>2022-12-02T13:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change an indicator dynamically according to the previous lines</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333855#M102593</link>
      <description>&lt;P&gt;I'd need to see the whole job to be able to work this out. Your code looks OK, so this could be because of some other issue.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 14:07:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Change-an-indicator-dynamically-according-to-the-previous-lines/m-p/2333855#M102593</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-02T14:07:51Z</dc:date>
    </item>
  </channel>
</rss>

