<?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 How to add space between text value? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017754#M84050</link>
    <description>&lt;P&gt;Hi Qlik,&lt;/P&gt;
&lt;P&gt;I need to add space between the text value before the numbers. so that I can search the number without * in the field.&lt;/P&gt;
&lt;P&gt;Need help with this. Thanks!&lt;/P&gt;
&lt;P&gt;example (employee name with a number)&amp;nbsp; field value:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Almnz-Michli, Leel&lt;FONT color="#3366FF"&gt;Ivan-88779&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Expected field value:&lt;/P&gt;
&lt;P&gt;Almnz-Michli, Leel&lt;FONT color="#3366FF"&gt;Ivan&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;- 88779&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Dec 2022 05:29:56 GMT</pubDate>
    <dc:creator>MuraliPrasath</dc:creator>
    <dc:date>2022-12-19T05:29:56Z</dc:date>
    <item>
      <title>How to add space between text value?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017754#M84050</link>
      <description>&lt;P&gt;Hi Qlik,&lt;/P&gt;
&lt;P&gt;I need to add space between the text value before the numbers. so that I can search the number without * in the field.&lt;/P&gt;
&lt;P&gt;Need help with this. Thanks!&lt;/P&gt;
&lt;P&gt;example (employee name with a number)&amp;nbsp; field value:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Almnz-Michli, Leel&lt;FONT color="#3366FF"&gt;Ivan-88779&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Expected field value:&lt;/P&gt;
&lt;P&gt;Almnz-Michli, Leel&lt;FONT color="#3366FF"&gt;Ivan&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;- 88779&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 05:29:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017754#M84050</guid>
      <dc:creator>MuraliPrasath</dc:creator>
      <dc:date>2022-12-19T05:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to add space between text value?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017779#M84052</link>
      <description>&lt;P&gt;I assume you have some kind of pattern in your string.&lt;/P&gt;
&lt;P&gt;My best guess by looking at your example is that the number comes after the last&amp;nbsp; '-' sign. If that is the case then you can do like this.&lt;/P&gt;
&lt;P&gt;Mid(Textfield, 1, index(Textfield,'-',-1)) &amp;amp; ' ' &amp;amp; subfield (Textfield, '-', -1)&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 07:07:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017779#M84052</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2022-12-19T07:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to add space between text value?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017868#M84060</link>
      <description>&lt;P&gt;Thank you Vegar &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 09:57:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2017868#M84060</guid>
      <dc:creator>MuraliPrasath</dc:creator>
      <dc:date>2022-12-19T09:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to add space between text value?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2018558#M84129</link>
      <description>&lt;P&gt;Hi Vegar,&lt;/P&gt;
&lt;P&gt;I got the space after the '-' now. How to get the space before the '-' also like below.&lt;/P&gt;
&lt;P&gt;Example:&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;Almnz-Michli, Leel&lt;/SPAN&gt;&lt;FONT color="#3366FF"&gt;Ivan&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;- 88779&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 14:15:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2018558#M84129</guid>
      <dc:creator>MuraliPrasath</dc:creator>
      <dc:date>2022-12-20T14:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to add space between text value?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2018696#M84138</link>
      <description>&lt;P&gt;You could try this:&lt;/P&gt;
&lt;P&gt;=Mid(&lt;SPAN&gt;Textfield&lt;/SPAN&gt;, 1, index(&lt;SPAN&gt;Textfield&lt;/SPAN&gt;,'-',-1)&lt;STRONG&gt;-2&lt;/STRONG&gt;) &amp;amp; &lt;STRONG&gt;' - '&lt;/STRONG&gt; &amp;amp; subfield (&lt;SPAN&gt;Textfield&lt;/SPAN&gt;, '-', -1)&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 21:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-space-between-text-value/m-p/2018696#M84138</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2022-12-20T21:25:11Z</dc:date>
    </item>
  </channel>
</rss>

