<?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: Help with IF/Else statement in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269826#M47933</link>
    <description>row8.Code.equals("AE") ? null :&lt;BR /&gt;row5.CONTACT_ADD3 == null ?&lt;BR /&gt;row5.CONTACT_POSTCODE :&lt;BR /&gt;row5.CONTACT_ADD3 + ", " + row5.CONTACT_POSTCODE</description>
    <pubDate>Fri, 22 May 2020 13:00:58 GMT</pubDate>
    <dc:creator>TRF</dc:creator>
    <dc:date>2020-05-22T13:00:58Z</dc:date>
    <item>
      <title>Help with IF/Else statement</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269825#M47932</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I'm trying to get help on this if/else statement.&amp;nbsp; I don't really know what I'm doing when I need to include more than one condition.&amp;nbsp; This is my statement&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;row8.Code.equals("AE") ? null :&lt;BR /&gt;row5.CONTACT_ADD3 :&lt;BR /&gt;row5.CONTACT_ADD3.equals(null)?&lt;BR /&gt;row5.CONTACT_POSTCODE :&lt;BR /&gt;row5.CONTACT_ADD3+", "+row5.CONTACT_POSTCODE &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;So I'm trying to say&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;If Code = AE then make the field null, else&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;Use contact_add3, else&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;If contact_add3 is null then use contact_postcode, else&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;use contact_add3 + contact_postcode&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;I'm getting the error in the screenshot.&amp;nbsp; Thank you so much for help.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:21:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269825#M47932</guid>
      <dc:creator>JM39</dc:creator>
      <dc:date>2024-11-16T02:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help with IF/Else statement</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269826#M47933</link>
      <description>row8.Code.equals("AE") ? null :&lt;BR /&gt;row5.CONTACT_ADD3 == null ?&lt;BR /&gt;row5.CONTACT_POSTCODE :&lt;BR /&gt;row5.CONTACT_ADD3 + ", " + row5.CONTACT_POSTCODE</description>
      <pubDate>Fri, 22 May 2020 13:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269826#M47933</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2020-05-22T13:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with IF/Else statement</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269827#M47934</link>
      <description>&lt;P&gt;Use this it will work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;row8.Code.equals("AE") ? null :&lt;BR /&gt;Relational.ISNULL(row5.CONTACT_ADD3) ? row5.CONTACT_POSTCODE : row5.CONTACT_ADD3 + ", " + row5.CONTACT_POSTCODE&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2020 22:56:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269827#M47934</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-22T22:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help with IF/Else statement</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269828#M47935</link>
      <description>Did this help? If so, thanks to mark your case as solved (Kudo also accepted)</description>
      <pubDate>Sat, 23 May 2020 10:05:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269828#M47935</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2020-05-23T10:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help with IF/Else statement</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269829#M47936</link>
      <description>&lt;P&gt;Got that working now - thank you both!&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 12:05:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Help-with-IF-Else-statement/m-p/2269829#M47936</guid>
      <dc:creator>JM39</dc:creator>
      <dc:date>2020-05-25T12:05:29Z</dc:date>
    </item>
  </channel>
</rss>

