<?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: Tab delimited Text file into Collection in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52917#M7717</link>
    <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b29451d5-1dae-434c-9f74-79439794987f" data-tag-text="@Uvaraj Thangavel" href="https://community.blueprism.com/network/profile?UserKey=b29451d5-1dae-434c-9f74-79439794987f" data-itemmentionkey="eaa99e84-7f0b-4641-b34c-75a8096cc781"&gt;@Uvaraj Thangavel&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;You might take a look at the&amp;nbsp;&lt;STRONG&gt;Utility - Strings&lt;/STRONG&gt; VBO available on the &lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/utility---strings" target="_blank" rel="noopener"&gt;Digital Exchange&lt;/A&gt;. There is an action called &lt;EM&gt;&lt;STRONG&gt;Get Delimited Text As Collection&lt;/STRONG&gt;&lt;/EM&gt; that will take your delimited text and return it as a Collection. You can specify the delimiter as part of the input.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&amp;nbsp; ​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 15 Nov 2021 14:07:00 GMT</pubDate>
    <dc:creator>ewilson</dc:creator>
    <dc:date>2021-11-15T14:07:00Z</dc:date>
    <item>
      <title>Tab delimited Text file into Collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52912#M7712</link>
      <description>Hi,

I wanted to load the Tab delimited Text file values into a collection. Do anyone have any suggestion?</description>
      <pubDate>Mon, 12 Mar 2018 16:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52912#M7712</guid>
      <dc:creator>UvarajThangavel</dc:creator>
      <dc:date>2018-03-12T16:50:00Z</dc:date>
    </item>
    <item>
      <title>Use the Excel VBO. …</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52913#M7713</link>
      <description>Use the Excel VBO.&amp;nbsp; Unfortunately you will have to edit the code stage to switch on Tab delimited and turn of comma delimited.&amp;nbsp; The option is there in the code, but no input is provided to set the value from the object.</description>
      <pubDate>Mon, 12 Mar 2018 16:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52913#M7713</guid>
      <dc:creator>NevilleWatson</dc:creator>
      <dc:date>2018-03-12T16:55:00Z</dc:date>
    </item>
    <item>
      <title>Hi neville.watson,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52914#M7714</link>
      <description>Hi&amp;nbsp;neville.watson,
Thanks for your suggestion.&amp;nbsp;</description>
      <pubDate>Mon, 12 Mar 2018 17:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52914#M7714</guid>
      <dc:creator>UvarajThangavel</dc:creator>
      <dc:date>2018-03-12T17:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: Hi neville.watson,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52915#M7715</link>
      <description>&lt;P&gt;I happened to have the same problem. I duplicated the Page "Save Workbook As" and edited the duplicate.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It was a simple edit in Row 7&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt; wb.SaveAs(filename,20)&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;just adding &lt;CODE&gt;,20&lt;/CODE&gt; made Excel export in the right file format. (tab separated text)&lt;/P&gt;
&lt;P&gt;Unfortunately it brought another problem with it. It changed the date format.&lt;/P&gt;
&lt;P&gt;When I save the file manually it always saves in the right date format DD.MM.YYYY instead of MM/DD/YYYY:&lt;/P&gt;
&lt;P&gt;manual save result:&lt;BR /&gt;&lt;CODE&gt;Kostenst. Kostenart Kostenartenbezeichn. Bezeichnung Per FIBK RefBelegnr Wert/BWähr Erfaßt am&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;561 762500 Beiträge Fachverb. BVK - Beitrag 2021 001 8000 417 618,00 08.12.2020&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;saved by blueprism codestage result:&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;Kostenst. Kostenart Kostenartenbezeichn. Bezeichnung Per FIBK RefBelegnr Wert/BWähr Erfaßt am&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;561 762500 Beiträge Fachverb. BVK - Beitrag 2021 001 8000 417 618.00 12/8/2020&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;Does anyone have a hint how I can force using the DD.MM.YYYY date format when using the codestage "save workbook as" ?&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;
&lt;/P&gt;&lt;P&gt;
&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Marco Matuttis&lt;BR /&gt;Robot Process Automation Developer&lt;BR /&gt;INTER Krankenversicherung AG&lt;BR /&gt;Mannheim&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Nov 2021 09:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52915#M7715</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-04T09:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Tab delimited Text file into Collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52916#M7716</link>
      <description>May be you can try loading the data into Excel and then Convert text to Columns&amp;nbsp; and finally get it into the collection.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;MuraliKrishna&lt;BR /&gt;Senior Consultant - Automation Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 14 Nov 2021 16:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52916#M7716</guid>
      <dc:creator>krishna.kodimurali9</dc:creator>
      <dc:date>2021-11-14T16:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Tab delimited Text file into Collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52917#M7717</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b29451d5-1dae-434c-9f74-79439794987f" data-tag-text="@Uvaraj Thangavel" href="https://community.blueprism.com/network/profile?UserKey=b29451d5-1dae-434c-9f74-79439794987f" data-itemmentionkey="eaa99e84-7f0b-4641-b34c-75a8096cc781"&gt;@Uvaraj Thangavel&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;You might take a look at the&amp;nbsp;&lt;STRONG&gt;Utility - Strings&lt;/STRONG&gt; VBO available on the &lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/utility---strings" target="_blank" rel="noopener"&gt;Digital Exchange&lt;/A&gt;. There is an action called &lt;EM&gt;&lt;STRONG&gt;Get Delimited Text As Collection&lt;/STRONG&gt;&lt;/EM&gt; that will take your delimited text and return it as a Collection. You can specify the delimiter as part of the input.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&amp;nbsp; ​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Nov 2021 14:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Tab-delimited-Text-file-into-Collection/m-p/52917#M7717</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-15T14:07:00Z</dc:date>
    </item>
  </channel>
</rss>

