<?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: Convert Data type of Column Name in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68939#M21544</link>
    <description>Perfect!. Thanks!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 30 Nov 2021 12:54:00 GMT</pubDate>
    <dc:creator>vinodchinthakin</dc:creator>
    <dc:date>2021-11-30T12:54:00Z</dc:date>
    <item>
      <title>Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68932#M21537</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I have a Collection with Columns A,B,C as Text Data Type. I want to convert Column B as Number Data Type.&lt;BR /&gt;I am using Calc stage within a loop which is taking more time when collection is huge. Do we have any other solution for this ?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 09:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68932#M21537</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-11-30T09:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68933#M21538</link>
      <description>Hi Vinod,&lt;BR /&gt;&lt;BR /&gt;Create a collection with the same fields but make the field type of B as number type. Use a calculation stage and assign the original collection to this collection. No loops are required.&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;I used a collection called Coll1 with A,B and C field as text and some values as well as shown below.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27275.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27405i8D03FC33ED1EEBB1/image-size/large?v=v2&amp;amp;px=999" role="button" title="27275.png" alt="27275.png" /&gt;&lt;/span&gt;&lt;BR /&gt;I used a defined collection call "Coll2" with the fields A,B and C where B is of number type and it has no values.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27276.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27406iCFEEC78A87F182BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="27276.png" alt="27276.png" /&gt;&lt;/span&gt;&lt;BR /&gt;I just used a calculation stage to store the value of "Coll1" into Coll2" and automatically all the values will get type casted in column B from text to number as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27277.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27409iDAE3057B2A0F0C2F/image-size/large?v=v2&amp;amp;px=999" role="button" title="27277.png" alt="27277.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Values in Coll2:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27278.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27407iD81D8DC916C0A5D0/image-size/large?v=v2&amp;amp;px=999" role="button" title="27278.png" alt="27278.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;NOTE : Make sure that all values in field B of Coll1 are proper Numeric values otherwise you will get an exception.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Hope it helps you and if it resolves you query please mark it as the best answer so that others having the same problem can track the answer easily&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Automation Consultant&lt;BR /&gt;Blueprism 6x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 10:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68933#M21538</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2021-11-30T10:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68934#M21539</link>
      <description>Thanks Devneet Mohanty for your time in responding my query. I have already implemented this solution for collections with less no. of columns.&lt;BR /&gt;Let me elaborate my complete query, If I have a collection of 40-50 Columns, I can't go with above solution.&lt;BR /&gt;Do you suggest any other solution. Like Coding?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 10:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68934#M21539</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-11-30T10:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68935#M21540</link>
      <description>Thanks for your response, if you have a large collection in that case you can extend your Collection manipulation action with a custom action having three inputs: Input Collection, Field Name (text) and Field Type(text) where Field Type can have the possible values such as "Number","Flag","Text" or "Date".&lt;BR /&gt;&lt;BR /&gt;Use the following code:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;For Each column As System.Data.DataColumn In Input_Collection.Columns&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;If Field_Name.Equals(column.ColumnName) Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If CStr(Field_Type).ToUpper.Equals("TEXT") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(String))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ElseIf CStr(Field_Type).ToUpper.Equals("NUMBER") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(Integer))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ElseIf CStr(Field_Type).ToUpper.Equals("FLAG") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(Boolean))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ElseIf CStr(Field_Type).ToUpper.Equals("DATE") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(Date))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Throw New Exception("Invalid File Type Provided")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Else&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,column.DataType)&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;For Each row as System.Data.DataRow In Input_Collection.Rows&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output_Collection.ImportRow(row)&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please find the below screenshots for more reference where we are transforming the 'Age' column from 'Text' to 'Number' :&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27287.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27415i98CDA0AC4822D974/image-size/large?v=v2&amp;amp;px=999" role="button" title="27287.png" alt="27287.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27288.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27423i452374AA3C98F32A/image-size/large?v=v2&amp;amp;px=999" role="button" title="27288.png" alt="27288.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27289.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27417iDA49E166101EF325/image-size/large?v=v2&amp;amp;px=999" role="button" title="27289.png" alt="27289.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Code Stage Parameters:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27290.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27419i12DE948BC0A4ACEF/image-size/large?v=v2&amp;amp;px=999" role="button" title="27290.png" alt="27290.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27291.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27420iA7A8C6F00F22EDC4/image-size/large?v=v2&amp;amp;px=999" role="button" title="27291.png" alt="27291.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27292.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27425iBA7853E08CF33134/image-size/large?v=v2&amp;amp;px=999" role="button" title="27292.png" alt="27292.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you and if it resolves you query please mark it as the best answer so that others having the same problem can track the answer easily&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Automation Consultant&lt;BR /&gt;Blueprism 6x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 11:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68935#M21540</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2021-11-30T11:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68936#M21541</link>
      <description>&lt;SPAN&gt;Thanks Devneet Mohanty.&lt;BR /&gt;I will try your code and will let you know.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 11:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68936#M21541</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-11-30T11:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68937#M21542</link>
      <description>Hi &lt;SPAN&gt;&lt;SPAN&gt;Devneet Mohanty&lt;BR /&gt;Your Code works great. But I have a problem.&lt;BR /&gt;In my Case some values will be null then while executing code its throwing an error,&lt;/SPAN&gt;&lt;/SPAN&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="27315.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27446i20194218D866BA8C/image-size/large?v=v2&amp;amp;px=999" role="button" title="27315.png" alt="27315.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&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="27316.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27444iD05B5C4381D47052/image-size/large?v=v2&amp;amp;px=999" role="button" title="27316.png" alt="27316.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;Do we have any solution to handle null Values while converting to Number&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 12:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68937#M21542</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-11-30T12:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68938#M21543</link>
      <description>Ideally Vinod, there should not be any null values coming in an Integer column. Technically the error is correct, better thing&amp;nbsp; is to first either remove these null values or replace the null values with 0 before using this code. Such changes generally should not be handled within the code itself as it is more of a business requirement related change. Try to keep the code reusable for every kind of general scenario.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you and if it resolves you query please mark it as the best answer so that others having the same problem can track the answer easily&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Automation Consultant&lt;BR /&gt;Blueprism 6x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 12:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68938#M21543</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2021-11-30T12:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68939#M21544</link>
      <description>Perfect!. Thanks!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 12:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68939#M21544</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2021-11-30T12:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68940#M21545</link>
      <description>Awesome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you and if it resolves you query please mark it as the best answer so that others having the same problem can track the answer easily&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Automation Consultant&lt;BR /&gt;Blueprism 6x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 13:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68940#M21545</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2021-11-30T13:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68941#M21546</link>
      <description>Hi Devneet,&lt;BR /&gt;&lt;BR /&gt;I have used the above code stage to convert a column from "Text" to "Date". When I open the Output collection, I found that the text column became "Date Time" and also values are not correct.&lt;BR /&gt;&lt;BR /&gt;E.g. one row value was "01/04/2021" as "Text". After the conversion the value became "31/03/2021 23:00:00" (I guess it follows the UTC time)&lt;BR /&gt;&lt;BR /&gt;Please let me know how to resolve this issue. I only need that column in Date format with same data.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Ashis&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ashis Kumar Ray&lt;BR /&gt;RPA Developer&lt;BR /&gt;TCS&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Dec 2021 17:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68941#M21546</guid>
      <dc:creator>Ashis_KumarRay</dc:creator>
      <dc:date>2021-12-07T17:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68942#M21547</link>
      <description>Hi Ashis,&lt;BR /&gt;&lt;BR /&gt;Yes you are absolutely correct on the point that the values which got converted are in UTC format because of which you are facing this issue. Also, one thing to note is in VB .NET you only have the DateTime class. Technically speaking, even the Date values are treated as DateTime objects with time component values as 00:00:00 only which is why when we call the data type in VB .NET then it is by default mapped against the DateTime column in the collection. &lt;BR /&gt;&lt;BR /&gt;My fair guess here is that Blue Prism internally has some mechanism of converting the DateTime objects into the the 'Date' data type at the Blue Prism end or they might be using some specific class for dates that I am not aware of yet. &lt;BR /&gt;&lt;BR /&gt;Perhaps &lt;A class="user-content-mention" data-sign="@" data-contactkey="0a9b5778-7ac7-4764-a9c9-822633ad2ffb" data-tag-text="@Bruce Liu" href="https://community.blueprism.com/people/bruce-liu1" data-itemmentionkey="64ad787e-3832-487e-a648-9b1e10ba0a29"&gt;@Bruce Liu&lt;/A&gt; &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt; or someone from the technical team can confirm which class type in VB .NET is specifically being used to map the data type 'Date' in Blue Prism.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Coming to one of the solution is probably something you have picked up correctly that we would require to convert the incoming date from UTC format. For implementing this I have modified by solution a bit as shown below:&lt;BR /&gt;&lt;BR /&gt;​&lt;span class="lia-inline-image-display-wrapper" image-alt="27377.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27507iDBC5CA7E24BC271D/image-size/large?v=v2&amp;amp;px=999" role="button" title="27377.png" alt="27377.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;First you need to create all this extra data items as input parameters for the action where you can supply the time difference in terms of hours, minutes and seconds​. You can provide the default value as 0 (Initial Value). So tomorrow in case you want to work with UTC format simply no need to provide any values.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the code stage also the following changes need to be done:&lt;BR /&gt;&lt;BR /&gt;​&lt;span class="lia-inline-image-display-wrapper" image-alt="27378.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27509i18B3F586CB9F2667/image-size/large?v=v2&amp;amp;px=999" role="button" title="27378.png" alt="27378.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27379.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27508iDCE6ACE92DEC892F/image-size/large?v=v2&amp;amp;px=999" role="button" title="27379.png" alt="27379.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27380.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27516i1D2F3DFD4D4B7136/image-size/large?v=v2&amp;amp;px=999" role="button" title="27380.png" alt="27380.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27381.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27511i99A32A9ECF1AB6CE/image-size/large?v=v2&amp;amp;px=999" role="button" title="27381.png" alt="27381.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Here the major change is the commenting of the line: &lt;CODE&gt;Output_Collection.ImportRow(row)&lt;/CODE&gt; and instead we are using a different looping logic altogether so that we can check the date data type and accordingly convert just that one column value to Local format instead of importing all the rows at once.&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;For Each column As System.Data.DataColumn In Input_Collection.Columns&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; If Field_Name.Equals(column.ColumnName) Then&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If CStr(Field_Type).ToUpper.Equals("TEXT") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(String))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ElseIf CStr(Field_Type).ToUpper.Equals("NUMBER") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(Integer))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ElseIf CStr(Field_Type).ToUpper.Equals("FLAG") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(Boolean))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ElseIf CStr(Field_Type).ToUpper.Equals("DATE") Then&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,GetType(Date))&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Throw New Exception("Invalid File Type Provided")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; Else&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output_Collection.Columns.Add(column.ColumnName,column.DataType)&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; End If&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim newRow As System.Data.DataRow&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;For Each row as System.Data.DataRow In Input_Collection.Rows&lt;/CODE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;newRow = Output_Collection.NewRow()&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;For Each column as System.Data.DataColumn In Output_Collection.Columns&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If column.DataType = GetType(Date) Then&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;newRow(column.ColumnName) = CDate(row(column.ColumnName)) + New&amp;nbsp; TimeSpan(0,Time_Difference_In_Hours,Time_Difference_In_Minutes,Time_Difference_In_Seconds)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;newRow(column.ColumnName) = row(column.ColumnName)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Output_Collection.Rows.Add(newRow)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;STRONG&gt;Test Results:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27382.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27512iE83978534C667FAC/image-size/large?v=v2&amp;amp;px=999" role="button" title="27382.png" alt="27382.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27384.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27515iC0966632F80615B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="27384.png" alt="27384.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;EM&gt;Here I am converting UTC to IST so I have provided the time difference of +5:30, you can also provide negative values if your target time zone is behind the UTC time zone&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27386.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27514i41FC141683CA18D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="27386.png" alt="27386.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;You can see we got the proper datetime values now since we are considering them to be a part of our current Time Zone. Hope it helps you out!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you and if it resolves you query please mark it as the best answer so that others having the same problem can track the answer easily&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Automation Consultant&lt;BR /&gt;Blueprism 6x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Dec 2021 23:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68942#M21547</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2021-12-07T23:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68943#M21548</link>
      <description>There's nothing super special going on behind the scenes within Blue Prism. As you can see from a Code stage, Blue Prism's &lt;EM&gt;&lt;STRONG&gt;Date&lt;/STRONG&gt;&lt;/EM&gt;, &lt;EM&gt;&lt;STRONG&gt;DateTime&lt;/STRONG&gt;&lt;/EM&gt;, and &lt;EM&gt;&lt;STRONG&gt;Time&lt;/STRONG&gt;&lt;/EM&gt; data items are all implemented using &lt;EM&gt;&lt;STRONG&gt;System.DateTime&lt;/STRONG&gt;&lt;/EM&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27414.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27546iEF4E5E71EA4ED2AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="27414.png" alt="27414.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27415.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27543i875C840ACF612363/image-size/large?v=v2&amp;amp;px=999" role="button" title="27415.png" alt="27415.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&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, 08 Dec 2021 16:30:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68943#M21548</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-12-08T16:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68944#M21549</link>
      <description>Thanks a lot for your response &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;. I had my doubts over this, but the implementation of Date from DateTime is something that is the same in VB .NET as well. &lt;BR /&gt;&lt;BR /&gt;Let me rephrase my question a bit, the part that I am not able to understand is that when we try to add any columns to a data table from code stage using: &lt;SPAN&gt;Output_Collection.Columns.Add(&lt;/SPAN&gt;&lt;WBR /&gt;&lt;SPAN&gt;column.ColumnName, GetType(&lt;/SPAN&gt;&lt;WBR /&gt;&lt;SPAN&gt;Date))&lt;BR /&gt;&lt;BR /&gt;Blue Prism adds this column as a DateTime type of column at it's end. If you say that the data types DateTime, Date and Time are all implemented using System.Date.DateTime, then how does it distinguishes that whether date, date time or time type of data is added using Columns.Add method. &lt;BR /&gt;&lt;BR /&gt;Can you perhaps help to share any sample code where we can see the logic to add any Date or Time column apart from DateTime column via code stage if possible ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you and if it resolves you query please mark it as the best answer so that others having the same problem can track the answer easily&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Automation Consultant&lt;BR /&gt;Blueprism 6x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Dec 2021 16:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68944#M21549</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2021-12-08T16:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68945#M21550</link>
      <description>I've been tinkering around a bit with this. If you look at the schema of the underlying DataTable for a Blue Prism Collection defined with a Column of type &lt;STRONG&gt;Date&lt;/STRONG&gt; what you'll find in an extended property. This extended property seems to be what BP uses to map DateTime to Date and Time types.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27476.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27605i9A96EA437917AEB0/image-size/large?v=v2&amp;amp;px=999" role="button" title="27476.png" alt="27476.png" /&gt;&lt;/span&gt;&lt;BR /&gt;When you create a column dynamically there's a property on the DataColumn type called &lt;STRONG&gt;ExtendedProperties&lt;/STRONG&gt;. In theory, you should be able to add this custom property to that property collection and voila. 🤷‍&lt;span class="lia-unicode-emoji" title=":male_sign:"&gt;♂️&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers,&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, 08 Dec 2021 20:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68945#M21550</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-12-08T20:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68946#M21551</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Once we&lt;SPAN&gt; &lt;/SPAN&gt;&amp;nbsp;created using external data, systematically numeric columns are taken to as data type objects instead of int or float, creating numeric tasks not possible. We will pass any Python, Numpy, or Pandas datatype to vary all columns of a dataframe thereto type, or we will pass a dictionary having column names as keys and datatype as values to vary the type of picked columns.&lt;/P&gt;
&lt;P&gt;Here&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;function empowers us to be express the data type you need to have. It's extremely adaptable i.e you can attempt to go from one type to some other.&lt;/P&gt;
&lt;DIV class="textBasedMannualAds"&gt;
&lt;DIV class="textBasedMannualAds"&gt;
&lt;P&gt;&amp;nbsp;Attention geek! Strengthen your foundations with the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Course and learn the basics.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;STYLE type="text/css"&gt;&amp;lt;!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--&amp;gt;&lt;/STYLE&gt;
&lt;DIV class="textBasedMannualAds"&gt;
&lt;P&gt;&lt;A href="https://seanmurphyteam.com/" target="_blank" rel="noopener" title="Sean Murphy Team"&gt;&lt;SPAN data-sheets-value="{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:&amp;quot;Sean Murphy Team&amp;quot;}" data-sheets-userformat="{&amp;quot;2&amp;quot;:1,&amp;quot;3&amp;quot;:{&amp;quot;1&amp;quot;:0,&amp;quot;3&amp;quot;:1}}"&gt;Sean Murphy Team&lt;/SPAN&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 08 Dec 2021 20:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/68946#M21551</guid>
      <dc:creator>Finlay_lucaFinl</dc:creator>
      <dc:date>2021-12-08T20:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/112943#M50576</link>
      <description>&lt;P&gt;Hi Vinod.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm curious as to how you used a loop and calc stage to change the Data Type of your column. I need to do this myself. It could be any column that needs to be changed and it could be a different column every time.&lt;BR /&gt;Any help would be appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;JB&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 14:24:20 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/112943#M50576</guid>
      <dc:creator>Jaychlo</dc:creator>
      <dc:date>2024-08-07T14:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: RE: Convert Data type of Column Name</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/113029#M50622</link>
      <description>&lt;P&gt;Hi Devneet,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I've tried using your code below to update a data type in my collection but I'm getting the error below:&lt;/P&gt;&lt;P&gt;Description: Compiler error at line 20: 'Output_Collection' is not declared. It may be inaccessible due to its protection level.&lt;BR /&gt;&lt;BR /&gt;Any suggestions and how I can correct this please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 14:44:41 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Convert-Data-type-of-Column-Name/m-p/113029#M50622</guid>
      <dc:creator>Jaychlo</dc:creator>
      <dc:date>2024-08-12T14:44:41Z</dc:date>
    </item>
  </channel>
</rss>

