<?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: how to implement if - if else structure in Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338654#M106871</link>
    <description>this post also helped</description>
    <pubDate>Tue, 24 May 2016 11:45:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-05-24T11:45:14Z</dc:date>
    <item>
      <title>how to implement if - if else structure in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338652#M106869</link>
      <description>How can I implement if, if - else structure in Talend without using tJava component? &lt;BR /&gt;For example how can I implement this code snippet with talend components?&amp;nbsp; &lt;BR /&gt;&lt;PRE&gt;if(condition1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; statements1 &lt;BR /&gt;else if(condition2)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; statements2 &lt;BR /&gt;else if(condition3)&lt;BR /&gt;...&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 10:37:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338652#M106869</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T10:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to implement if - if else structure in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338653#M106870</link>
      <description>&lt;P align="LEFT"&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;Hi,&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;Here is&amp;nbsp;ternary if-else operator in tMap.&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;The expression is Condition?value if true: value if false.&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;Please take a look at a related forum:&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCqKTCA0" target="_blank" rel="nofollow noopener noreferrer"&gt;https://community.talend.com/t5/Design-and-Development/resolved-tMap-Conditions-Problems-conversion/td-p/108040&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;Best regards&lt;/FONT&gt;&lt;/FONT&gt; 
&lt;BR /&gt; 
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, sans-serif"&gt;Sabrina&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Tue, 24 May 2016 10:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338653#M106870</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-24T10:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to implement if - if else structure in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338654#M106871</link>
      <description>this post also helped</description>
      <pubDate>Tue, 24 May 2016 11:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338654#M106871</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-24T11:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to implement if - if else structure in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338655#M106872</link>
      <description>so the answer is to do it like that in tMap expression editor: 
&lt;BR /&gt;
&lt;PRE&gt;(condition1) ? statement1 : (condition2) ? : statement2 : (condition3) ? ...&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2016 11:53:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338655#M106872</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-24T11:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to implement if - if else structure in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338656#M106873</link>
      <description>Hi,
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="Calibri, sans-serif"&gt;Could you please elaborate your case with an example with input and expected output values? In this way, we can set this&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;if-else operator&lt;/FONT&gt;&lt;/FONT&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;expression in tMap for you.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Best regards&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;Sabrina&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Wed, 25 May 2016 03:46:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-implement-if-if-else-structure-in-Talend/m-p/2338656#M106873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-25T03:46:50Z</dc:date>
    </item>
  </channel>
</rss>

