<?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: Delete Repetitive Values in a collection or Excel in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83092#M34421</link>
    <description>Does anyone know how can this be achieved but to review all columns to identify the duplicated values?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gabriela Esquivel&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 03 Feb 2023 19:08:00 GMT</pubDate>
    <dc:creator>GabrielaEsquive</dc:creator>
    <dc:date>2023-02-03T19:08:00Z</dc:date>
    <item>
      <title>Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83084#M34413</link>
      <description>Hi All,&lt;BR /&gt;I have a following scenario where I want to remove duplicate/repetitive values in a column.&lt;BR /&gt;In below example, I want to remove complete rows of text &lt;STRONG&gt;Raju&lt;/STRONG&gt; which is repeated more than once in Column &lt;STRONG&gt;Name &lt;/STRONG&gt;and output should look as shown below. &lt;BR /&gt;What logic I can apply other than conventional solution like using a loop. If the Input has 50K records or high number of records where using a loop might not be a perfect solution.&lt;BR /&gt;Do we have a any action for that in collection or in Excel VBO or any developed code in VB.net or C#?&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Input Collection :&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Name&amp;nbsp; &amp;nbsp; Age&amp;nbsp; &amp;nbsp; Location&lt;/STRONG&gt;&lt;BR /&gt;Raju&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;23&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Mumbai&lt;BR /&gt;Ravi&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;34&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Bangalore&lt;BR /&gt;Raju&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;27&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Hyderabad&lt;BR /&gt;Ramesh 45&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Delhi&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Output Collection :&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Name&amp;nbsp; &amp;nbsp; Age&amp;nbsp; &amp;nbsp; Location&lt;/STRONG&gt;&lt;BR /&gt;Ravi&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;34&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Bangalore&lt;BR /&gt;Ramesh 45&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Delhi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jan 2022 08:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83084#M34413</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2022-01-11T08:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83085#M34414</link>
      <description>Hi Vinod,&lt;BR /&gt;&lt;BR /&gt;If the input is an excel file you can simply use the OLEDB VBO and execute a query like '&lt;CODE&gt;SELECT * FROM [&amp;lt;Sheet_Name&amp;gt;$] WHERE [Name] IN (SELECT [Name] FROM [&amp;lt;Sheet_Name&amp;gt;$] GROUP BY [Name] HAVING COUNT (*) = 1)&lt;/CODE&gt;'&lt;BR /&gt;&lt;BR /&gt;Just replace the &amp;lt;Sheet_Name&amp;gt; with the excel sheet consisting of your dataset.&lt;BR /&gt;&lt;BR /&gt;For collection, you can try to use a LINQ query like:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE class="hljs language-csharp"&gt;&lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt;&lt;/CODE&gt;&lt;CODE class="hljs language-csharp"&gt; Collection_Out = Collection_In.GroupBy(item =&amp;gt; item.Name).Where(g =&amp;gt; g.Count() == &lt;SPAN class="hljs-number"&gt;1&lt;/SPAN&gt;&lt;/CODE&gt;&lt;CODE class="hljs language-csharp"&gt;).Select(g =&amp;gt; g.Single());&lt;/CODE&gt;&lt;CODE class="hljs language-csharp"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;Do let me know if you want to know how to create a LINQ VBO, I have posted multiple threads on this as well otherwise I can show detailed steps as well.&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 Process Automation Consultant&lt;BR /&gt;Blue Prism 7x 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, 11 Jan 2022 09:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83085#M34414</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-01-11T09:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83086#M34415</link>
      <description>Thanks Dev for quick response. I will try to implement your solution and will let you know once am done with it,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jan 2022 10:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83086#M34415</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2022-01-11T10:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83087#M34416</link>
      <description>Hi Dev, I have tried your code&lt;BR /&gt;&lt;CODE class="hljs  language-csharp"&gt;&lt;SPAN class="token keyword"&gt;var&lt;/SPAN&gt;&lt;/CODE&gt;&lt;CODE class="hljs  language-csharp"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Collection_Out&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Collection_In&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;GroupBy&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;item&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;item&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Name&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Where&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;g&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;g&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;==&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;&lt;/CODE&gt;&lt;CODE class="hljs  language-csharp"&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Select&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;g&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;g&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Single&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;BR /&gt;When I tried above code in C# getting following error. Can you name the dll which is required here.&lt;BR /&gt;Description: Compiler error at line 1: 'DataTable' does not contain a definition for 'GroupBy' and no accessible extension method 'GroupBy' accepting a first argument of type 'DataTable' could be found (are you missing a using directive or an assembly reference?)&lt;BR /&gt;&lt;BR /&gt;Can you also provide same code in VB.Net so that I can accumulate in the code stage in existing collection VBO.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jan 2022 10:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83087#M34416</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2022-01-11T10:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83088#M34417</link>
      <description>&lt;DIV id="ViewAnswer_d1df562f-d7c9-4bb7-b227-811c79315cd3-answer-content" class="col-xs-12"&gt;Hi Vinod,&lt;BR /&gt;&lt;BR /&gt;You can create a new business object and add the below External References ('&lt;STRONG&gt;System.Data.DataSetExtensions.dll&lt;/STRONG&gt;', '&lt;STRONG&gt;System.Core.dll&lt;/STRONG&gt;') and Namespace Imports ('&lt;STRONG&gt;System.Data.DataSetExtensions&lt;/STRONG&gt;', '&lt;STRONG&gt;System.LINQ&lt;/STRONG&gt;') on the Page Description stage of your Initialize action for the LINQ queries to work properly. Also, ensure that the language is selected as '&lt;STRONG&gt;Visual Basic&lt;/STRONG&gt;':&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18924.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19077i741D7C79F30F04CB/image-size/large?v=v2&amp;amp;px=999" role="button" title="18924.png" alt="18924.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Once you have the updated code options as shown above, create a new action named '&lt;STRONG&gt;Get Non Repeating Records&lt;/STRONG&gt;' and pass two input arguments, Input Collection (Collection) and Field Name (Text). Based on the field name that you provide the duplicate records will be fetched from the Input Collection. Also set an Output parameter as Output Collection (Collection) for this action as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18925.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19080i4C9A8A2D725CA4B8/image-size/large?v=v2&amp;amp;px=999" role="button" title="18925.png" alt="18925.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Add the code stage and use the below code with the input and out arguments as show:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Output_Collection = (From row In Input_Collection _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Group row By a = row(Field_Name).Trim.ToString Into grp = Group _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Where grp.Count=1 _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Select grp.ToList).SelectMany(Function(x) x).CopyToDataTable()&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18926.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19076i8FE60E68E12613CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="18926.png" alt="18926.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18927.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19074iA078F8EB272867AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="18927.png" alt="18927.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18928.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19078i4747A65FA5063080/image-size/large?v=v2&amp;amp;px=999" role="button" title="18928.png" alt="18928.png" /&gt;&lt;/span&gt;&lt;BR /&gt;The run results are as follows:&lt;BR /&gt;&lt;BR /&gt;Input Arguments:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18929.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19083iDDD7F3BAB9568FEA/image-size/large?v=v2&amp;amp;px=999" role="button" title="18929.png" alt="18929.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Output Result:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18930.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19079i994FF86117B99F08/image-size/large?v=v2&amp;amp;px=999" role="button" title="18930.png" alt="18930.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;You can publish the action and test the same from Process Studio. Let us know if this helps you out &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/DIV&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 Process Automation Consultant&lt;BR /&gt;Blue Prism 7x 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, 11 Jan 2022 10:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83088#M34417</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-01-11T10:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83089#M34418</link>
      <description>Awesome Dev. Its works well.!&lt;BR /&gt;&lt;SPAN&gt;I need a help where I have a code C# needs to convert to VB.Net. Can you help me out. The code helps in to "Find Row and Column Numbers by Value"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;DT = new DataTable();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DT = new DataTable();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DT.Columns.Add("Column Name");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DT.Columns.Add("RowIndex");DT.Columns.Add("ColumnIndex");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;int rowindex=0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;int columnindex=1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;foreach (DataColumn Column in in_DT.Columns)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DataRow[] rows = in_DT.Select(Column.ColumnName+" Like '%"+valuetofind+"%'");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (rows.Length&amp;gt;0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{ foreach (DataRow row in rows)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;rowindex = in_DT.Rows.IndexOf(row)+1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DataRow dr = DT.NewRow(); dr["Column Name"]=Column.ColumnName;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dr["RowIndex"]=rowindex; dr["ColumnIndex"]=columnindex;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DT.Rows.Add(dr);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;} else {rowindex = 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;} columnindex=columnindex+1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Note : Also Can you suggest how to convert code from C# to VB, is there a simple way to understand the syntax or any tool which helps in conversion. If possible can you share/make a video/document on it.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jan 2022 11:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83089#M34418</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2022-01-11T11:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83090#M34419</link>
      <description>Hey Vinod,&lt;BR /&gt;&lt;BR /&gt;I went through your code and have converted the same into VB .NET. You can extend the '&lt;STRONG&gt;Utility - Collection Manipulation&lt;/STRONG&gt;' VBO by creating the action '&lt;STRONG&gt;Find Row And Column Numbers By Value&lt;/STRONG&gt;' with the following input and output parameters:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Input Parameters:&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;in_DT (Collection): The input collection consisting of the data where the operation needs to be performed.&lt;BR /&gt;&lt;BR /&gt;in_ValueToFind (Text): The text value which needs to be looked up for in the input collection.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Output Parameters:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;out_DT (Collection) : The output collection consisting of the Column Name, Row Index and Column Index where the values are found.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Workflow:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18938.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19091iE700E4CC1D69E35C/image-size/large?v=v2&amp;amp;px=999" role="button" title="18938.png" alt="18938.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Code Stage Parameters:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18939.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19090i5A188C16B8125BB7/image-size/large?v=v2&amp;amp;px=999" role="button" title="18939.png" alt="18939.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Code:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18940.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19095i652B7FEA8625336E/image-size/large?v=v2&amp;amp;px=999" role="button" title="18940.png" alt="18940.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;CODE&gt;Dim DT As New DataTable()&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Dim rows() As DataRow&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;DT.Columns.Add("Column Name")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;DT.Columns.Add("RowIndex")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;DT.Columns.Add("ColumnIndex")&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim rowindex As Integer = 0&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Dim columnindex As Integer = 1&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;For Each Column As DataColumn In in_DT.Columns&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; rows = in_DT.Select(Column.ColumnName + " Like '%" + valuetofind + "%'")&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; If rows.Length &amp;gt; 0 Then&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; For Each row As DataRow In rows&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;rowindex = in_DT.Rows.IndexOf(row)+1&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim dr As DataRow = DT.NewRow()&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dr("Column Name")= Column.ColumnName&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dr("RowIndex") = rowindex&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dr("ColumnIndex") = columnindex&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DT.Rows.Add(dr)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Next&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;rowindex = 0&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; End If&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp; columnindex = columnindex + 1&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;out_DT = DT&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Test Results:&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;Input Arguments:&lt;BR /&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18941.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19093i339A16E95A8DF456/image-size/large?v=v2&amp;amp;px=999" role="button" title="18941.png" alt="18941.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Output Collection:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18942.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19089iC1D0EEB8035A83AB/image-size/large?v=v2&amp;amp;px=999" role="button" title="18942.png" alt="18942.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;VB .NET and C# have few notable differences to state explicitly which I can tell you upfront:&lt;BR /&gt;&lt;BR /&gt;- In VB .NET in case you need to declare variables using Dim and As notations whereas C# directly uses the typical class declaration.&lt;BR /&gt;- In VB .NET, you don't have any semicolons whereas in C# it is mandatory&lt;BR /&gt;- In VB .NET, you define scopes using For Each....Next, If....End If whereas in C# you use curly braces.&lt;BR /&gt;- In both languages the way the arrays are defined differ syntactically a bit&lt;BR /&gt;&lt;BR /&gt;To me personally, C# seems easier to use as I am majorly from a Java based background and C# is a lot similar to Java, but you might have seen that mostly I use VB .NET for my objects, reason being is since last one year or so most of my automations have been using VBA or VB Script in some sort so I have kind of developed this habit of writing syntaxes on it more frequently.&lt;BR /&gt;&lt;BR /&gt;In the end I would say it depends on your personal preference which language you choose and converting logic is not much difficult if you know what object both languages are using. With internet resources being so abundant in nature it has become even easier. But coming to the part if there is any converter which translates C# into VB .NET or vice versa, I am not really aware of this yet but perhaps someone can shed some light over it. I would be more than happy to give it a try as it would reduce my pain point by a bunch to be honest lol &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&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 Process Automation Consultant&lt;BR /&gt;Blue Prism 7x 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, 11 Jan 2022 16:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83090#M34419</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-01-11T16:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83091#M34420</link>
      <description>Thanks Dev. Code works Perfect!&lt;BR /&gt;The reason why I have asked to convert to VB script as most of the Assets published by BP or DX team are developed using VB script. It will be easy for me to incorporate new actions in existing VBO using same coding language.&lt;BR /&gt;&lt;BR /&gt;Even I have used some opensource web tools for conversion but seems lot of editing is required. For Example &lt;A href="https://converter.telerik.com/" target="_blank" rel="noopener"&gt;https://converter.telerik.com/&lt;/A&gt;&lt;BR /&gt;Thanks for providing valid inputs, will work around.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;vinod chinthakindi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Jan 2022 05:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83091#M34420</guid>
      <dc:creator>vinodchinthakin</dc:creator>
      <dc:date>2022-01-12T05:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83092#M34421</link>
      <description>Does anyone know how can this be achieved but to review all columns to identify the duplicated values?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gabriela Esquivel&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Feb 2023 19:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83092#M34421</guid>
      <dc:creator>GabrielaEsquive</dc:creator>
      <dc:date>2023-02-03T19:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83093#M34422</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="e803085b-93dc-4296-8be0-01865dcb7c23" data-tag-text="@Gabriela Esquivel" href="https://community.blueprism.com/network/profile?UserKey=e803085b-93dc-4296-8be0-01865dcb7c23" data-itemmentionkey="9025b0c3-51bd-4870-b97f-1ba6a794c1f5"&gt;@Gabriela Esquivel&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Thanks for reaching out to community. Wanted to check what exactly you mean by review all columns to identify duplicated values? From what I perceive it is that you want non-repeating records ​based on all the column values just except any one specific field name. If that is your requirement you can achieve the same by adding a simple action in the '&lt;STRONG&gt;Collection Manipulation&lt;/STRONG&gt;' VBO:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18962.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19114iA23F7FA0ED5B0A1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="18962.png" alt="18962.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18963.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19111i8E4C48D5BB941D10/image-size/large?v=v2&amp;amp;px=999" role="button" title="18963.png" alt="18963.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18964.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19112iDDCC9FCAFBEF1F64/image-size/large?v=v2&amp;amp;px=999" role="button" title="18964.png" alt="18964.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;Output_Collection = Input_Collection.DefaultView.ToTable(True)​&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x 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 Feb 2023 08:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83093#M34422</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2023-02-07T08:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83094#M34423</link>
      <description>Hi Dev! I opened a conversation explaining better what i want to do:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.blueprism.com/question/get-non-repeating-records-from-collection-review-all-columns#688cccba-ac04-40dc-bbac-0186265f7056" target="test_blank"&gt;https://community.blueprism.com/question/get-non-repeating-records-from-collection-review-all-columns#688cccba-ac04-40dc-bbac-0186265f7056&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I replicated the solution you gave in this chat but I in the Input "Field Name" it only considers only one column to identify repeated records, i want to do the same but to consider all columns form the collection to identify repeated records , with the note that I also want to get as output only the NON repeated records, example of what I'm trying to achieve:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Input Collection : &lt;BR /&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper" image-alt="18965.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19117i0FE662D6BF514B70/image-size/large?v=v2&amp;amp;px=999" role="button" title="18965.png" alt="18965.png" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;DIV&gt;Output Collection:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="18966.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/19115i37B13F555378BFB4/image-size/large?v=v2&amp;amp;px=999" role="button" title="18966.png" alt="18966.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Thanks in advance!&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gabriela Esquivel&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Feb 2023 14:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83094#M34423</guid>
      <dc:creator>GabrielaEsquive</dc:creator>
      <dc:date>2023-02-07T14:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83095#M34424</link>
      <description>Hi Devneet,&lt;BR /&gt;&lt;BR /&gt;Im trying to use your solution, i get an error&amp;nbsp;&lt;EM&gt;Public member 'Trim' on type 'Decimal'&amp;nbsp;&lt;/EM&gt; any idea how to resolve this?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Shuaib Salie&lt;BR /&gt;Medscheme&lt;BR /&gt;Africa/Johannesburg&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2023 17:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83095#M34424</guid>
      <dc:creator>ShuaibSalie</dc:creator>
      <dc:date>2023-02-08T17:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83096#M34425</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="b8eb1289-062c-4d33-acee-952e051f7ba8" data-tag-text="@Shuaib Salie" href="https://community.blueprism.com/network/profile?UserKey=b8eb1289-062c-4d33-acee-952e051f7ba8" data-itemmentionkey="3e71fbc5-bcfb-41dd-96e2-75b7ac3f1be7"&gt;@Shuaib Salie&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;If possible, can you share any screenshot of the error where I can see at which line it is showing the issue. Also, can you tell me exactly which code you are referring to since there're way too many codes on this thread now lol​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x 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 Feb 2023 19:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83096#M34425</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2023-02-08T19:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Delete Repetitive Values in a collection or Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83097#M34426</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Its this one:&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Output_Collection = (From row In Input_Collection _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Group row By a = row(Field_Name).Trim.ToString Into grp = Group _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Where grp.Count=1 _&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Select grp.ToList).SelectMany(Function(x) x).CopyToDataTable()&lt;/CODE&gt;​&lt;BR /&gt;&lt;BR /&gt;I figured out why its happening, the Field_Name is a number type. I tested it using a different column (text) and it worked. Can the code be modified when referencing a number type column. I got the error when executing the action.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Shuaib Salie&lt;BR /&gt;RPA Developer&lt;BR /&gt;Medscheme&lt;BR /&gt;Africa/Johannesburg&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2023 19:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Delete-Repetitive-Values-in-a-collection-or-Excel/m-p/83097#M34426</guid>
      <dc:creator>ShuaibSalie</dc:creator>
      <dc:date>2023-02-08T19:55:00Z</dc:date>
    </item>
  </channel>
</rss>

