<?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 Try This… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53697#M8336</link>
    <description>Try This
&amp;nbsp;
Dim RR As Object
Dim excel As Object
Try
RR = GetWorksheet(Handle, WorkBookName, WorkSheetName)
RR.Activate()
excel = RR.Application
RR.UsedRange.Select()
excel.Selection.TextToColumns (DataType:=1, ConsecutiveDelimiter:=True,Other:=True,OtherChar:=Delimiter)
Success = True
Catch e As Exception
Success = False
Message = e.Message
End Try</description>
    <pubDate>Fri, 23 Mar 2018 10:58:00 GMT</pubDate>
    <dc:creator>RakeshReddy</dc:creator>
    <dc:date>2018-03-23T10:58:00Z</dc:date>
    <item>
      <title>How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53696#M8335</link>
      <description>Hi,&amp;nbsp;

I have been trying to create a Code Stage in order to put text of a CSV file delimited by a "^" in Columns.&amp;nbsp;

Initially I tried using Import CSV, replacing the delimiter and putting it in a Collection,&amp;nbsp; but the files are too big and it gives Memory Errors.&amp;nbsp;

&amp;nbsp;

Has anyone done anything like this. I did a code but it´s not working.&amp;nbsp;

Dim wb, ws, range, excel as Object

wb = GetInstance(handle)
ws = GetWorkbook(handle, WorkbookName).ActiveSheet.Range(cellref,cellref).Activate()
excel= ws.Application

range = ws().Selection.TextToColumns(OtherChar, Other)

&amp;nbsp;

I would really appreciate if anyone has some inputs here. Thanks!</description>
      <pubDate>Thu, 15 Mar 2018 22:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53696#M8335</guid>
      <dc:creator>EdritFranquiz</dc:creator>
      <dc:date>2018-03-15T22:06:00Z</dc:date>
    </item>
    <item>
      <title>Try This…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53697#M8336</link>
      <description>Try This
&amp;nbsp;
Dim RR As Object
Dim excel As Object
Try
RR = GetWorksheet(Handle, WorkBookName, WorkSheetName)
RR.Activate()
excel = RR.Application
RR.UsedRange.Select()
excel.Selection.TextToColumns (DataType:=1, ConsecutiveDelimiter:=True,Other:=True,OtherChar:=Delimiter)
Success = True
Catch e As Exception
Success = False
Message = e.Message
End Try</description>
      <pubDate>Fri, 23 Mar 2018 10:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53697#M8336</guid>
      <dc:creator>RakeshReddy</dc:creator>
      <dc:date>2018-03-23T10:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Try This…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53698#M8337</link>
      <description>Hi Rakesj Reddy,&lt;BR /&gt;&lt;BR /&gt;How to use Fieldinfo in your code, I need to convert as as text or general.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SREEKANTH GTR&lt;BR /&gt;Junior software engineer&lt;BR /&gt;Wipro&lt;BR /&gt;Indian/Maldives&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 11 Jan 2020 07:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53698#M8337</guid>
      <dc:creator>SREEKANTHGTR</dc:creator>
      <dc:date>2020-01-11T07:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53699#M8338</link>
      <description>Create an intenger matrix&lt;BR /&gt;&lt;CODE&gt;Dim matrix = New Integer(6, 1) {{1, 1}, {2, 1}, {3, 9}, {4, 1}, {5, 1}, {6, 1}, {7, 1}}&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;Then you could use it as parameter for FieldInfo&lt;BR /&gt;&lt;CODE&gt;FieldInfo:=matrix&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;Full Code&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim wb, ws As Object&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Dim excel, sheet, range As Object&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Dim matrix = New Integer(6, 1) {{1, 1}, {2, 1}, {3, 9}, {4, 1}, {5, 1}, {6, 1}, {7, 1}}&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Try&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;wb = GetWorkbook(Handle, Workbook)&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;wb.Activate()&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;ws.Activate()&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;excel = ws.Application&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;excel.Selection.TextToColumns (Destination:=excel.Range(Cell_Reference), DataType:=1, _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;TextQualifier:=-4142, ConsecutiveDelimiter:=False, Tab:=False, _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Semicolon:=False, Comma:=False, Space:=False, Other:=True, OtherChar _ &lt;/CODE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;:=Delimiter, FieldInfo:=matrix, TrailingMinusNumbers:=True)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Success = True&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Catch e As Exception&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Success = False&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Message = e.Message&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Finally&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;wb = Nothing&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;ws = Nothing&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;excel = Nothing&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;sheet = Nothing&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;range = Nothing&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;End Try&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Miguel Carrillo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Sep 2020 22:56:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53699#M8338</guid>
      <dc:creator>MiguelCarrillo</dc:creator>
      <dc:date>2020-09-02T22:56:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53700#M8339</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="dffc3189-3fc7-4403-9985-e0151ab31bbf" data-tag-text="@Miguel Carrillo" href="https://community.blueprism.com/network/profile?UserKey=dffc3189-3fc7-4403-9985-e0151ab31bbf" data-itemmentionkey="c4461724-53d6-4bda-b277-76909a6d7e3e"&gt;@Miguel Carrillo&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;I wanted to convert text or custom columns to date columns using a code stage. But when i declare the array as you mentioned above its not working. Its throwing an error &lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12903.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13066i2B658F5B0EF48CF2/image-size/large?v=v2&amp;amp;px=999" role="button" title="12903.png" alt="12903.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have recorded the manual operation using record macro. PFB&lt;BR /&gt;​&lt;span class="lia-inline-image-display-wrapper" image-alt="12904.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13068i1436A070C147CEC0/image-size/large?v=v2&amp;amp;px=999" role="button" title="12904.png" alt="12904.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Could you please help me in declaring the array for the above code in such a way that i can use it in my code stage!!!!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sasikanth Machavarapu&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Mar 2022 13:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53700#M8339</guid>
      <dc:creator>SasikanthMachav</dc:creator>
      <dc:date>2022-03-02T13:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53701#M8340</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/24405"&gt;@SasikanthMachav&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;If you're trying to change the format of a column have you tried using the &lt;EM&gt;&lt;STRONG&gt;Format Cell&lt;/STRONG&gt;&lt;/EM&gt; action and passing in the format that you want? The action is designed to work on a single cell at a time, but you could create a custom version that handles an actual range by adding an extra input value for the end of the range. Then you would change the single line Code stage to include the end of range value.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12907.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13072iF5D5B6E157BED475/image-size/large?v=v2&amp;amp;px=999" role="button" title="12907.png" alt="12907.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&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>Wed, 02 Mar 2022 15:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53701#M8340</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-02T15:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53702#M8341</link>
      <description>&lt;P&gt;Hi the following code should work:&lt;BR /&gt;&lt;BR /&gt;In this link you will find the integer for the type of format you need it. &lt;A href="https://docs.microsoft.com/en-us/office/vba/api/excel.xlcolumndatatype" target="test_blank"&gt;https://docs.microsoft.com/en-us/office/vba/api/excel.xlcolumndatatype&lt;/A&gt;&lt;BR /&gt;Remember that the &lt;SPAN&gt;The first element is the column number (1-based), and the second element is one of the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;A href="https://docs.microsoft.com/en-us/office/vba/api/excel.xlcolumndatatype" data-linktype="relative-path" target="_blank" rel="noopener"&gt;XlColumnDataType&lt;/A&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;constants specifying how the column is parsed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Dim wb, ws As Object
Dim excel, sheet, range As Object
Dim matrix = New Integer(2, 1) {{1, 4}, {2, 4}}

Try

wb = GetWorkbook(Handle, Workbook)
ws = GetWorksheet(Handle, Workbook, Worksheet)

wb.Activate()
ws.Activate()
excel = ws.Application

excel.Selection.TextToColumns (Destination:=excel.Range(Cell_Reference), DataType:=1, _
TextQualifier:=-4142, ConsecutiveDelimiter:=False, Tab:=False, _
Semicolon:=False, Comma:=False, Space:=False, Other:=True, OtherChar _
:=Delimiter, FieldInfo:=matrix, TrailingMinusNumbers:=True)

Success = True

Catch e As Exception
Success = False
Message = e.Message
Finally
wb = Nothing
ws = Nothing
excel = Nothing
sheet = Nothing
range = Nothing
End Try​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/P&gt;&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Let me know if you have any questions. And I could try to explain it to you in a deeper way.&lt;BR /&gt;Have a nice day.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Miguel Carrillo&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Mar 2022 15:30:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53702#M8341</guid>
      <dc:creator>MiguelCarrillo</dc:creator>
      <dc:date>2022-03-04T15:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53703#M8342</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I am trying to use this code to convert&amp;nbsp; AG column (33th column from an Excel file with mutiple columns) into a DATE format column but I think I am doing something wrong because I get the "The given key was not present in the dictionary" error.&lt;BR /&gt;&lt;BR /&gt;Maybe the input is not ok? Can you please help me ?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12914.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13077iEF60FC73B60EB4DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="12914.png" alt="12914.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12915.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13080iE7001BAF64049813/image-size/large?v=v2&amp;amp;px=999" role="button" title="12915.png" alt="12915.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12916.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13078i750A7B1DDFA3DFC8/image-size/large?v=v2&amp;amp;px=999" role="button" title="12916.png" alt="12916.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Irina&lt;BR /&gt;&lt;BR /&gt;Have a nice day!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Irina Mihalache&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2022 17:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53703#M8342</guid>
      <dc:creator>IrinaMihalache</dc:creator>
      <dc:date>2022-09-23T17:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53704#M8343</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/31242"&gt;@IrinaMihalache&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;​The error "&lt;SPAN&gt;&lt;STRONG&gt;The given key was not present in the dictionary&lt;/STRONG&gt;" generally comes when you have created the instance (i.e. handle) and keep on making changes in the code while in debug mode. In such scenario, the handle which you have created, lost its value from the memory and you get the error. The best way to resolve the issue is reset the code and again run it. The issue won't appear. Please let me know if that is not the scenario.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;Note&lt;/SPAN&gt;- I am assuming that there is only single handle in the process&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Manpreet Kaur&lt;BR /&gt;Manager&lt;BR /&gt;Deloitte&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Sep 2022 22:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53704#M8343</guid>
      <dc:creator>ManpreetKaur1</dc:creator>
      <dc:date>2022-09-25T22:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to put Text to Columns with Excel VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53705#M8344</link>
      <description>Hello &lt;A id="MainCopy_ctl13_ucMessageList_rptMessageList_ProfileImageDisplay_8_NameLink_8" biobubblekey="3db878b9-c0af-4064-9da8-37aa582a3942" href="https://community.blueprism.com/network/profile?UserKey=3db878b9-c0af-4064-9da8-37aa582a3942" target="_blank" rel="noopener"&gt;Manpreet Kaur,&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your response! I resolved the &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;The given key was not present in the dictionary&lt;/STRONG&gt;" error, now the message is "Success", but not working as expected.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;I need to make AG column (column number 33) from 'General' to 'Date' (DMY option) and I am using this code below, but nothings happens, although I do not receive any error. I also tried with DataType 4, and TextQualifier 1, but nothing changes.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12924.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13089iBF567CBD672FFCE6/image-size/large?v=v2&amp;amp;px=999" role="button" title="12924.png" alt="12924.png" /&gt;&lt;/span&gt;
&lt;P&gt;Dim wb, ws As Object&lt;/P&gt;
&lt;P&gt;Dim excel, sheet, range As Object&lt;/P&gt;
&lt;P&gt;Dim matrix = New Integer(6, 1) {{1, 1}, {2, 1},{3, 9},{4, 1},{5, 1},{6, 1},{7,1}}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;wb = GetWorkbook(Handle, Workbook)&lt;/P&gt;
&lt;P&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;wb.Activate()&lt;/P&gt;
&lt;P&gt;ws.Activate()&lt;/P&gt;
&lt;P&gt;excel = ws.Application&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;excel.Columns("AG:AG").Select&lt;/P&gt;
&lt;P&gt;excel.Selection.TextToColumns (Destination:=excel.Range("AG1"), DataType:=1, _&lt;/P&gt;
&lt;P&gt;TextQualifier:=-4142, ConsecutiveDelimiter:=False, Tab:=True, _&lt;/P&gt;
&lt;P&gt;Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo:=matrix, TrailingMinusNumbers:=True)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Success = True&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Catch e As Exception&lt;/P&gt;
&lt;P&gt;Success = False&lt;/P&gt;
&lt;P&gt;Message = e.Message&lt;/P&gt;
&lt;P&gt;Finally&lt;/P&gt;
&lt;P&gt;wb = Nothing&lt;/P&gt;
&lt;P&gt;ws = Nothing&lt;/P&gt;
&lt;P&gt;excel = Nothing&lt;/P&gt;
&lt;P&gt;sheet = Nothing&lt;/P&gt;
&lt;P&gt;range = Nothing&lt;/P&gt;
&lt;P&gt;End Try&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12925.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13088i7145AAED7839946F/image-size/large?v=v2&amp;amp;px=999" role="button" title="12925.png" alt="12925.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Irina Mihalache&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Sep 2022 12:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-put-Text-to-Columns-with-Excel-VBO/m-p/53705#M8344</guid>
      <dc:creator>IrinaMihalache</dc:creator>
      <dc:date>2022-09-26T12:00:00Z</dc:date>
    </item>
  </channel>
</rss>

