<?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: Separate or Trim Field into 2 values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452838#M98129</link>
    <description>&lt;P&gt;Thanks so much the solution works,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;now i need to create a field which returns Yes else No,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in a scenario where field1 value is 3421 and if it matches with value on other data source field return Yes if not return No.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 May 2024 16:15:15 GMT</pubDate>
    <dc:creator>Thabang231</dc:creator>
    <dc:date>2024-05-15T16:15:15Z</dc:date>
    <item>
      <title>Separate or Trim Field into 2 values</title>
      <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452820#M98125</link>
      <description>&lt;P&gt;Hi There, I would like assistance on separating field or trimming it into 2 parts, so i can connect that field with the other field from other file. see examples&lt;/P&gt;
&lt;P&gt;DEV25, DEV29,DEV45,DEV19,PRO23,PRO353,PRO43,PRO22&lt;/P&gt;
&lt;P&gt;I need to only be able to focus on the DEV or PRO part and separate them to numbers, because the field i want to connect with has only numbers such as 25,29,45,19,23,353,43,22,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your help will be highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 15:27:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452820#M98125</guid>
      <dc:creator>Thabang231</dc:creator>
      <dc:date>2024-05-15T15:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Separate or Trim Field into 2 values</title>
      <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452821#M98126</link>
      <description>&lt;P&gt;Left(Field,3) and Mid(Field,4,999) should be the simplest way in this scenario.&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 15:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452821#M98126</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2024-05-15T15:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Separate or Trim Field into 2 values</title>
      <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452838#M98129</link>
      <description>&lt;P&gt;Thanks so much the solution works,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;now i need to create a field which returns Yes else No,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in a scenario where field1 value is 3421 and if it matches with value on other data source field return Yes if not return No.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 16:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452838#M98129</guid>
      <dc:creator>Thabang231</dc:creator>
      <dc:date>2024-05-15T16:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Separate or Trim Field into 2 values</title>
      <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452854#M98131</link>
      <description>&lt;P&gt;You can achieve this by using IF statement&lt;/P&gt;
&lt;P&gt;IF(Field2=Field1,'yes','no') as flag&lt;/P&gt;
&lt;P&gt;Where Field2 is other Data Source Field.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note for doing this you need to connect both tables first either making both fieldname common or by using joins, then you can apply above logic.&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 17:16:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452854#M98131</guid>
      <dc:creator>Sayed_Mannan</dc:creator>
      <dc:date>2024-05-15T17:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Separate or Trim Field into 2 values</title>
      <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452855#M98132</link>
      <description>&lt;P&gt;you can also apply below logic&lt;/P&gt;
&lt;P&gt;Left(Field1,3) -&amp;gt; It will give Dev OR Pro&lt;BR /&gt;Right(Field1,(Len(Field1)-3)) -&amp;gt; It will give numbers i.e 25,29 etc&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 17:19:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2452855#M98132</guid>
      <dc:creator>Sayed_Mannan</dc:creator>
      <dc:date>2024-05-15T17:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Separate or Trim Field into 2 values</title>
      <link>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2453049#M98154</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6142"&gt;@Or&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/260241"&gt;@Sayed_Mannan&lt;/a&gt;&amp;nbsp; The solutions worked.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 07:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Separate-or-Trim-Field-into-2-values/m-p/2453049#M98154</guid>
      <dc:creator>Thabang231</dc:creator>
      <dc:date>2024-05-16T07:28:32Z</dc:date>
    </item>
  </channel>
</rss>

