<?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 ADD Space to text not to numbers in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999695#M246748</link>
    <description>&lt;P&gt;Hi Team,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to add single space to texts and not to numbers. I just need space to text fields.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deepakpintya_0-1663006305546.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/256704i674864AE0B6030B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deepakpintya_0-1663006305546.png" alt="deepakpintya_0-1663006305546.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 12 Sep 2022 18:12:52 GMT</pubDate>
    <dc:creator>deepakpintya</dc:creator>
    <dc:date>2022-09-12T18:12:52Z</dc:date>
    <item>
      <title>ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999695#M246748</link>
      <description>&lt;P&gt;Hi Team,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to add single space to texts and not to numbers. I just need space to text fields.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deepakpintya_0-1663006305546.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/256704i674864AE0B6030B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deepakpintya_0-1663006305546.png" alt="deepakpintya_0-1663006305546.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:12:52 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999695#M246748</guid>
      <dc:creator>deepakpintya</dc:creator>
      <dc:date>2022-09-12T18:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999697#M246749</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/340620"&gt;@deepakpintya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming you want to add a space after the text, this would work. Otherwise feel free to modify how you see fit:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;IF isinteger([Root Cause]) 
then [Root Cause]
Else [Root Cause] + ' ' 
Endif&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:14:38 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999697#M246749</guid>
      <dc:creator>Luke_C</dc:creator>
      <dc:date>2022-09-12T18:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999699#M246750</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/340620"&gt;@deepakpintya&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Assuming you want to add the text to the beginning you can use the regex match formula like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;REGEX_Match([Root Cause], "\d+")&lt;/LI-CODE&gt;
&lt;P&gt;This will return True if only digits are present.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Put that in an if statement and you can add a space if it is not only numbers:&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IF REGEX_Match([Root Cause], "\d+") THEN [Root Cause] ELSE " " + [Root Cause] ENDIF&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IraWatt_0-1663006680424.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/256705i31E350A1A3D30A9F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IraWatt_0-1663006680424.png" alt="IraWatt_0-1663006680424.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The community has some quick and easy videos on formulas and the Formula Tool here &lt;A href="https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Writing%20Expressions" target="_blank"&gt;https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Writing%20Expressions&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to learn more about Regex the community has some really quick interactive videos on getting to grips with it here &lt;A href="https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Parsing%20Data" target="_blank"&gt;https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Parsing%20Data&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any questions or issues please ask&lt;BR /&gt;&lt;BR /&gt;Ira Watt&lt;BR /&gt;Technical Consultant&lt;BR /&gt;Watt@Bulien.com&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:18:26 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999699#M246750</guid>
      <dc:creator>IraWatt</dc:creator>
      <dc:date>2022-09-12T18:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999704#M246752</link>
      <description>&lt;P&gt;Its not worked.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:26:47 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999704#M246752</guid>
      <dc:creator>deepakpintya</dc:creator>
      <dc:date>2022-09-12T18:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999710#M246755</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/340620"&gt;@deepakpintya&lt;/a&gt;&amp;nbsp;did you want to add a space to the beginning or end?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:31:27 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999710#M246755</guid>
      <dc:creator>IraWatt</dc:creator>
      <dc:date>2022-09-12T18:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999711#M246756</link>
      <description>&lt;P&gt;Beginning.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:32:26 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999711#M246756</guid>
      <dc:creator>deepakpintya</dc:creator>
      <dc:date>2022-09-12T18:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999714#M246758</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/340620"&gt;@deepakpintya&lt;/a&gt;&amp;nbsp;how did my example workflow not work for you?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:36:27 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999714#M246758</guid>
      <dc:creator>IraWatt</dc:creator>
      <dc:date>2022-09-12T18:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999715#M246759</link>
      <description>&lt;P&gt;unable to output but regex formula worked. In output its coming without space.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:36:47 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999715#M246759</guid>
      <dc:creator>deepakpintya</dc:creator>
      <dc:date>2022-09-12T18:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999728#M246764</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/340620"&gt;@deepakpintya&lt;/a&gt;&amp;nbsp;It does seem to work with CSV just not Excel not sure why (works fine here with CSV):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IraWatt_0-1663008689103.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/256712iC86051A312E76DB3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IraWatt_0-1663008689103.png" alt="IraWatt_0-1663008689103.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 18:51:51 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999728#M246764</guid>
      <dc:creator>IraWatt</dc:creator>
      <dc:date>2022-09-12T18:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: ADD Space to text not to numbers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999732#M246768</link>
      <description>&lt;P&gt;I have huge data with many coulmns, if i change to CSV from EXCEL then its not getting reconcile.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 19:00:09 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/ADD-Space-to-text-not-to-numbers/m-p/999732#M246768</guid>
      <dc:creator>deepakpintya</dc:creator>
      <dc:date>2022-09-12T19:00:09Z</dc:date>
    </item>
  </channel>
</rss>

