<?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 Regex - Extracting data in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182585#M293147</link>
    <description>&lt;P&gt;I want to use REGEX to extract the "Account names" and "Account numbers" into two columns, appearing on the same row, like what was shown in the "Results" image, but I want them appearing on the same row. The Account names have more than 2 formats, see "Account names" image. How can I do so using the REGEX function? Thank you!&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2024 21:36:11 GMT</pubDate>
    <dc:creator>OOIWJ</dc:creator>
    <dc:date>2024-06-13T21:36:11Z</dc:date>
    <item>
      <title>Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182585#M293147</link>
      <description>&lt;P&gt;I want to use REGEX to extract the "Account names" and "Account numbers" into two columns, appearing on the same row, like what was shown in the "Results" image, but I want them appearing on the same row. The Account names have more than 2 formats, see "Account names" image. How can I do so using the REGEX function? Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 21:36:11 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182585#M293147</guid>
      <dc:creator>OOIWJ</dc:creator>
      <dc:date>2024-06-13T21:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182780#M293209</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/492574"&gt;@OOIWJ&lt;/a&gt;&amp;nbsp;&amp;nbsp;- more info is needed, like what does the incoming data look like?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 23:01:21 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182780#M293209</guid>
      <dc:creator>DanielG</dc:creator>
      <dc:date>2023-09-01T23:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182792#M293212</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/492574"&gt;@OOIWJ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming that Col [F2] is the input data and Col [AccountNo.] and [AccountName] are the output data,&lt;/P&gt;&lt;P&gt;the formula to differentiate the column to store the input data would be as below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have more complicated patterns, check this site to edit RegEx with trial and error.&amp;nbsp;&lt;A href="https://regex101.com/" target="_blank" rel="noopener"&gt;https://regex101.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Formula&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#0000FF"&gt;AccountNo =&amp;nbsp;IF REGEX_Match([Data], "\d{4}-\d{3}-\d{2}")&amp;nbsp;THEN [Data]&amp;nbsp;ELSE Null()&amp;nbsp;ENDIF&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#0000FF"&gt;AccountName =&amp;nbsp;IF REGEX_Match([Data], "\d{4}-\d{3}-\d{2}")&amp;nbsp;THEN Null()&amp;nbsp;ELSE [Data]&amp;nbsp;ENDIF&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;AccountNo&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;AccountName&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;0102-000-00&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;0102-000-00&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;CASH - UB - OPERATING&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;CASH - UB - OPERATING&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Sep 2023 00:35:21 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182792#M293212</guid>
      <dc:creator>Yoshiro_Fujimori</dc:creator>
      <dc:date>2023-09-02T00:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182820#M293230</link>
      <description>&lt;P&gt;YEs, the output was created by me using REGEX, but that is still not what I wanted. I want the output to appear on the same row.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Sep 2023 02:04:57 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182820#M293230</guid>
      <dc:creator>OOIWJ</dc:creator>
      <dc:date>2023-09-02T02:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182963#M293261</link>
      <description>&lt;P&gt;Hi bro&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you describe the desire output for this example? Confirm if this Is what you expect&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actual Output:&lt;/P&gt;&lt;P&gt;|Account No | Account Name&lt;/P&gt;&lt;P&gt;| 99-99-99&amp;nbsp; &amp;nbsp; &amp;nbsp;| NULL&lt;/P&gt;&lt;P&gt;| NULL.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | XX-XX-XXXXX&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected Output:&lt;/P&gt;&lt;P&gt;|Account No | Account Name&lt;/P&gt;&lt;P&gt;| 99-99-99&amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp;XX-XX-XXXXX&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 03:06:39 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1182963#M293261</guid>
      <dc:creator>agpilo</dc:creator>
      <dc:date>2023-09-04T03:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183146#M293313</link>
      <description>&lt;P&gt;Yes, the expected output is what I want and I managed to get the result already.&lt;BR /&gt;&lt;BR /&gt;Anyway,&lt;SPAN&gt;&amp;nbsp;I am currently in the process of cleaning a General Ledger Excel file using Alteryx. Would you be interested in reviewing the Excel file and helping me out? I am more than happy to have a zoom with you as I have deadline to meet.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cheers!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 13:48:57 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183146#M293313</guid>
      <dc:creator>OOIWJ</dc:creator>
      <dc:date>2023-09-04T13:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183189#M293324</link>
      <description>&lt;P&gt;Good news! I'm interested on how you solved it. Ok, we can chat about your project&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 16:47:59 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183189#M293324</guid>
      <dc:creator>agpilo</dc:creator>
      <dc:date>2023-09-04T16:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183558#M293429</link>
      <description>&lt;P&gt;kindly provide me with your email so that i can send you the excel file, thanks&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 14:56:33 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183558#M293429</guid>
      <dc:creator>OOIWJ</dc:creator>
      <dc:date>2023-09-05T14:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regex - Extracting data</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183560#M293430</link>
      <description>&lt;P&gt;OK.&amp;nbsp; I am unsubscribing from this one.&amp;nbsp; Sharing your general ledger with an unknown person on the internet scares me to death.&amp;nbsp; Good luck.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 15:02:33 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Extracting-data/m-p/1183560#M293430</guid>
      <dc:creator>DanielG</dc:creator>
      <dc:date>2023-09-05T15:02:33Z</dc:date>
    </item>
  </channel>
</rss>

