<?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: Working effectively with CSV in BP to avoid any memory issues in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94693#M44102</link>
    <description>@&lt;A id="MainCopy_ctl10_ucMessageList_rptMessageList_ProfileImageDisplay_4_NameLink_4" biobubblekey="dffc3189-3fc7-4403-9985-e0151ab31bbf" href="https://community.blueprism.com/network/profile?UserKey=dffc3189-3fc7-4403-9985-e0151ab31bbf" target="_blank" rel="noopener"&gt;Miguel Carrillo&lt;/A&gt; - Thanks a lot for your response, if I have existing column names and have to replace it with new column names after finding it in Row1 which action should I use from excel VBO.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 23 Sep 2020 05:40:00 GMT</pubDate>
    <dc:creator>MayankGoyal2</dc:creator>
    <dc:date>2020-09-23T05:40:00Z</dc:date>
    <item>
      <title>Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94688#M44097</link>
      <description>Hi All, I have a CSV file with 20 columns and 24k rows. I have to update column names of this CSV and save it as xlsx with a particular file name and sheet name. I dont want to read csv in collection to avoid any memory issues. Kindly suggest on a better solution for the same. Is there any VBO to work directly with CSV for updating column names and saving it as excel.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Sep 2020 05:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94688#M44097</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-09-21T05:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94689#M44098</link>
      <description>You should be able to open an Excel instance and load the CSV file via Excel. You could use the Excel functionality to rewrite the column names in row 1, then save it as an XLSX. You'd avoid having to load the collection into Blue Prism altogether.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nicholas Zejdlik&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94689#M44098</guid>
      <dc:creator>NicholasZejdlik</dc:creator>
      <dc:date>2020-09-21T13:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94690#M44099</link>
      <description>@ &lt;A id="MainCopy_ctl10_ucMessageList_rptMessageList_ProfileImageDisplay_1_NameLink_1" biobubblekey="e42d12b2-a3f6-4f36-a821-9db8ee48b837" href="https://community.blueprism.com/network/profile?UserKey=e42d12b2-a3f6-4f36-a821-9db8ee48b837" target="_blank" rel="noopener"&gt;Nicholas Zejdlik&lt;/A&gt; - Thanks a lot for your response. I was thinking the same design but not sure whats the most effective way of updating all columns of row1. There are current column headings which I have to update with new column heading, like a one to one replacement of heading for all 20 columns.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Sep 2020 18:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94690#M44099</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-09-21T18:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94691#M44100</link>
      <description>You should be able to extract the headers on row 1 via a calculation stage. This should pull the row using this:&lt;BR /&gt;&lt;CODE&gt;Left([CSV], InStr([CSV], NewLine()))​&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;You could then call CSV to Collection on the header row, which would give you an empty collection with column definitions (so it wouldn't have any data that could potentially lead to an out of memory exception). Perform the column name updates on the empty collection, then call Collection to CSV to switch it back to CSV. Finally, merge the updated header CSV with the rest of the data like this:&lt;BR /&gt;&lt;CODE&gt;[Updated Headers] &amp;amp; Right([CSV], Len([CSV]) - InStr([CSV], NewLine()) + 1)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;Alternatively, you could use the Replace() function in a calculation stage to update the headers instead of loading them in as a collection, but that could lead to unwanted results depending on your column names.&lt;BR /&gt;&lt;BR /&gt;There may be some easier ways to do this, but this should work.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nicholas Zejdlik&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Sep 2020 18:56:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94691#M44100</guid>
      <dc:creator>NicholasZejdlik</dc:creator>
      <dc:date>2020-09-21T18:56:00Z</dc:date>
    </item>
    <item>
      <title>RE: Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94692#M44101</link>
      <description>&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;You could achieve it with this flow.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25167.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25298i5E2A4CDDEA7B4EB3/image-size/large?v=v2&amp;amp;px=999" role="button" title="25167.png" alt="25167.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25168.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25300i049C241C78D52D3E/image-size/large?v=v2&amp;amp;px=999" role="button" title="25168.png" alt="25168.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25169.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25301i63DCF6726611B687/image-size/large?v=v2&amp;amp;px=999" role="button" title="25169.png" alt="25169.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;The result is something like the following&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25170.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25302i2913006B73F9B967/image-size/large?v=v2&amp;amp;px=999" role="button" title="25170.png" alt="25170.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Miguel Carrillo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Sep 2020 16:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94692#M44101</guid>
      <dc:creator>MiguelCarrillo</dc:creator>
      <dc:date>2020-09-22T16:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94693#M44102</link>
      <description>@&lt;A id="MainCopy_ctl10_ucMessageList_rptMessageList_ProfileImageDisplay_4_NameLink_4" biobubblekey="dffc3189-3fc7-4403-9985-e0151ab31bbf" href="https://community.blueprism.com/network/profile?UserKey=dffc3189-3fc7-4403-9985-e0151ab31bbf" target="_blank" rel="noopener"&gt;Miguel Carrillo&lt;/A&gt; - Thanks a lot for your response, if I have existing column names and have to replace it with new column names after finding it in Row1 which action should I use from excel VBO.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mayank Goyal&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Sep 2020 05:40:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94693#M44102</guid>
      <dc:creator>MayankGoyal2</dc:creator>
      <dc:date>2020-09-23T05:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: Working effectively with CSV in BP to avoid any memory issues</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94694#M44103</link>
      <description>You need to use the Action called&amp;nbsp; &lt;STRONG&gt;Set Cell Value&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;where you can specify the cell Reference&amp;nbsp; (the cell you want to change, eg. A1, B1, C1&lt;BR /&gt;and the new value for that cell.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Miguel Carrillo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Sep 2020 23:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Working-effectively-with-CSV-in-BP-to-avoid-any-memory-issues/m-p/94694#M44103</guid>
      <dc:creator>MiguelCarrillo</dc:creator>
      <dc:date>2020-09-23T23:01:00Z</dc:date>
    </item>
  </channel>
</rss>

