<?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 Hi, in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69065#M21670</link>
    <description>Hi,
I need little bit clearly can u elobarate it as much as u can..</description>
    <pubDate>Mon, 16 Oct 2017 14:35:00 GMT</pubDate>
    <dc:creator>Venkata_NitishM</dc:creator>
    <dc:date>2017-10-16T14:35:00Z</dc:date>
    <item>
      <title>How to Remove duplicate columns inside excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69057#M21662</link>
      <description>Hi,


I have an excel sheet, in that i have a duplicate data, how can i remove duplicate data, i read excel sheet data in the form of collection, here i need to do compare the collections how i can do comparision??</description>
      <pubDate>Fri, 13 Oct 2017 12:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69057#M21662</guid>
      <dc:creator>Venkata_NitishM</dc:creator>
      <dc:date>2017-10-13T12:23:00Z</dc:date>
    </item>
    <item>
      <title>Hello nitish,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69058#M21663</link>
      <description>Hello nitish,
You mean to say you have duplicate rows of same data or you have duplicate columns</description>
      <pubDate>Fri, 13 Oct 2017 12:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69058#M21663</guid>
      <dc:creator>SurajJadhav</dc:creator>
      <dc:date>2017-10-13T12:45:00Z</dc:date>
    </item>
    <item>
      <title>I want to remove duplicate</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69059#M21664</link>
      <description>I want to remove duplicate  rows of data for columns in excel sheet</description>
      <pubDate>Fri, 13 Oct 2017 14:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69059#M21664</guid>
      <dc:creator>Venkata_NitishM</dc:creator>
      <dc:date>2017-10-13T14:53:00Z</dc:date>
    </item>
    <item>
      <title>Okay.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69060#M21665</link>
      <description>Okay.
You can use work queue to do that
First you have to create a new queue enter key name field, the column name of your collection for eg Name or Id.We will remove remove duplicate data which contains same name or Id.
Now use collection loops we will add collections data to queue one by one.
Add Action stage in loop stage select business object work queue-&amp;gt;select action -&amp;gt; Is Item In queue.
create output data item which is flag type.
Next Add decision Stage below action and check for flag if flag is true we will not add this data to queue just skip this and add link back to loop start.
If flag is false for this add action to enter data in queue.
here u need to use one temp collection where u store current row of collection.
pass this collection as input to add queue.
After all loop execution is done You can read queue data which contains your data which is not duplicate data.
this is quite complex but it will help.
If u don't understand anything reply but try to read it and implement i know its not efficient but it will give you desired output</description>
      <pubDate>Fri, 13 Oct 2017 16:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69060#M21665</guid>
      <dc:creator>SurajJadhav</dc:creator>
      <dc:date>2017-10-13T16:05:00Z</dc:date>
    </item>
    <item>
      <title>Our you can do it manual in</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69061#M21666</link>
      <description>Our you can do it manual in Excel.
1. Select the range of cells, or make sure that the active cell is in a table.
2. On the Data tab, in the Data Tools group, click Remove Duplicates.
3. Do one or more of the following:
* Under Columns, select one or more columns.
* To quickly select all columns, click Select All.
* To quickly clear all columns, click Unselect All.
4. Click OK.
(A message is displayed indicating how many duplicate values were removed and how many unique values remain, or if no duplicate values were removed.)
5. Click OK.
You can easily make a program that does this, or do it manual if it is to hard &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 13 Oct 2017 17:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69061#M21666</guid>
      <dc:creator>Christer_Tellefsen</dc:creator>
      <dc:date>2017-10-13T17:27:00Z</dc:date>
    </item>
    <item>
      <title>You can use a macro to remove</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69062#M21667</link>
      <description>You can use a macro to remove duplicates:Use Action -&amp;gt; MS Excel VBO -&amp;gt; Run Macro
Use the below macro:
Sub RemoveDuplicates()
Cells.RemoveDuplicates Columns:=Array(1, 2, 3)
End Sub
For this to work, first you have to Write the data to Macro work book and then after running the macro, copy the data back to a new collection to write it in new excel.</description>
      <pubDate>Sun, 15 Oct 2017 11:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69062#M21667</guid>
      <dc:creator>SudheerReddy</dc:creator>
      <dc:date>2017-10-15T11:10:00Z</dc:date>
    </item>
    <item>
      <title>Hi ,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69063#M21668</link>
      <description>Hi ,
Inorder to remove the duplicates I did the following steps:
1. got the worksheet values into the collection.(this can be used by using ""get worksheet values as collection "" from action in Excel Business Object).
2. wrote a code stage in C# to remove duplicates as below:
   Datatable dt;
  dt=InputColl; // passing input coll as input parameter
  OutputColl=dt.DefaultView.ToTable(/*distinct*/true);// OutputColl as output parameter</description>
      <pubDate>Mon, 16 Oct 2017 12:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69063#M21668</guid>
      <dc:creator>RathishKN1</dc:creator>
      <dc:date>2017-10-16T12:51:00Z</dc:date>
    </item>
    <item>
      <title>Hi sudheer,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69064#M21669</link>
      <description>Hi sudheer,
how to write data to macro work book and where to write below macro code, i mean to say can u elaborate clearly..</description>
      <pubDate>Mon, 16 Oct 2017 14:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69064#M21669</guid>
      <dc:creator>Venkata_NitishM</dc:creator>
      <dc:date>2017-10-16T14:12:00Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69065#M21670</link>
      <description>Hi,
I need little bit clearly can u elobarate it as much as u can..</description>
      <pubDate>Mon, 16 Oct 2017 14:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69065#M21670</guid>
      <dc:creator>Venkata_NitishM</dc:creator>
      <dc:date>2017-10-16T14:35:00Z</dc:date>
    </item>
    <item>
      <title>Use global send Keys: Alt+A+M</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69066#M21671</link>
      <description>Use global send Keys: Alt+A+M</description>
      <pubDate>Tue, 17 Oct 2017 01:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69066#M21671</guid>
      <dc:creator>PrateekMehan</dc:creator>
      <dc:date>2017-10-17T01:06:00Z</dc:date>
    </item>
    <item>
      <title>Hi sudheer,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69067#M21672</link>
      <description>Hi sudheer,
i am getting this exception:
Internal : Could not execute code stage because exception thrown by code stage: Cannot run the macro 'Blueprism systest.xlsm'. The macro may not be available in this workbook or all macros may be disabled.</description>
      <pubDate>Thu, 26 Oct 2017 16:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69067#M21672</guid>
      <dc:creator>Venkata_NitishM</dc:creator>
      <dc:date>2017-10-26T16:19:00Z</dc:date>
    </item>
    <item>
      <title>Hi  Prateek  ,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69068#M21673</link>
      <description>Hi  Prateek  ,
Can you please elaborate it that means how to pass shortcut key(Alt+A+M)  in send keys</description>
      <pubDate>Wed, 29 Nov 2017 17:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69068#M21673</guid>
      <dc:creator>ChandraAddepall</dc:creator>
      <dc:date>2017-11-29T17:09:00Z</dc:date>
    </item>
    <item>
      <title>You can use OLEDB to get the</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69069#M21674</link>
      <description>You can use OLEDB to get the desired o/p. All you need is SQL Query which will return you the result in a collection. Write back this collection to the file.
Sample Query be like:
 select min[ur_identifier_Header]  from  [SheetName$] group  by [Header1], [Header2] so on.....
First u need to set connection to excel sheet using OLEDB VBO. That link u can have in the portal. Search for OLEDB.</description>
      <pubDate>Mon, 04 Dec 2017 13:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69069#M21674</guid>
      <dc:creator>JivankumarKedar</dc:creator>
      <dc:date>2017-12-04T13:35:00Z</dc:date>
    </item>
    <item>
      <title>Use Global send keys Events…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69070#M21675</link>
      <description>Use Global send keys Events to pass&amp;nbsp;(Alt+A+M)&amp;nbsp; in the excel</description>
      <pubDate>Wed, 27 Dec 2017 17:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-Remove-duplicate-columns-inside-excel/m-p/69070#M21675</guid>
      <dc:creator>parthasarathy</dc:creator>
      <dc:date>2017-12-27T17:15:00Z</dc:date>
    </item>
  </channel>
</rss>

