<?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: Issue related Excel Data Comparison in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85888#M36823</link>
    <description>So you want to flag rows that contain the same column values but are not in the same overall order between the two spreadsheets too? In your example above you call out the 3rd row of Excel1 where column B = 24 but the 3rd row of Excel2 has column B=26. The only issue here is that the rows from #3 onward are in a different order between the two collections. Would those then be flagged in your differences collection?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28557.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28688i16429F04E47E8357/image-size/large?v=v2&amp;amp;px=999" role="button" title="28557.png" alt="28557.png" /&gt;&lt;/span&gt;&lt;BR /&gt;The following code will perform a comparison of two DataTables and return a DataTable that contains the actual differences between them. However, this is looking for actual differences in DataRow objects. If the rows are simply in a different order, they don't count as a difference. That's just a sorting issue. The only way a DataRow is actually different is if it contains completely different field values.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28558.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28691i652EBB4B5BBD8D6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="28558.png" alt="28558.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28559.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28690iD12A55A121AAA0E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="28559.png" alt="28559.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28561.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28696i392B244F0646BF14/image-size/large?v=v2&amp;amp;px=999" role="button" title="28561.png" alt="28561.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28562.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28692iAD622CA06248C502/image-size/large?v=v2&amp;amp;px=999" role="button" title="28562.png" alt="28562.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Here's the actual code:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;var differences = excel2.AsEnumerable().Except(excel1.AsEnumerable(), DataRowComparer.Default);
Differences = differences.Any() ? differences.CopyToDataTable() : new DataTable();​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;FYI - Your username on the Community probably shouldn't contain an "@" sign as it screws up the mention feature a bit.&amp;nbsp;&lt;/P&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>Thu, 27 Jan 2022 17:50:00 GMT</pubDate>
    <dc:creator>ewilson</dc:creator>
    <dc:date>2022-01-27T17:50:00Z</dc:date>
    <item>
      <title>Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85885#M36820</link>
      <description />
      <pubDate>Wed, 26 Jan 2022 20:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85885#M36820</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-01-26T20:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85886#M36821</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@csandms1@gmail.com csandms1@gmail.com" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="b8bdb7f6-0929-4b19-bb49-8ee8b79feecd"&gt;@csandms1@gmail.com csandms1@gmail.com&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;What you're describing sounds like a type of SQL JOIN. A situation where you have two tables and you want to get a collection of rows from those tables based on some condition that exists, or doesn't, between them.&lt;BR /&gt;&lt;BR /&gt;I came across an article on Microsoft's Developer Network that seems related and includes an example of how to compare two DataTables (that's what a Collection is under the hood) and return a third. Perhaps this solution will cover your needs?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://social.msdn.microsoft.com/Forums/en-US/502ef961-2644-41d6-84be-464d28fcc24d/compare-two-datatables-and-return-3rd-with-difference?forum=aspwebforms" target="_blank" rel="noopener"&gt;https://social.msdn.microsoft.com/Forums/en-US/502ef961-2644-41d6-84be-464d28fcc24d/compare-two-datatables-and-return-3rd-with-difference?forum=aspwebforms&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&amp;nbsp; ​&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>Thu, 27 Jan 2022 12:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85886#M36821</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-01-27T12:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85887#M36822</link>
      <description />
      <pubDate>Thu, 27 Jan 2022 15:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85887#M36822</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-01-27T15:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85888#M36823</link>
      <description>So you want to flag rows that contain the same column values but are not in the same overall order between the two spreadsheets too? In your example above you call out the 3rd row of Excel1 where column B = 24 but the 3rd row of Excel2 has column B=26. The only issue here is that the rows from #3 onward are in a different order between the two collections. Would those then be flagged in your differences collection?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28557.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28688i16429F04E47E8357/image-size/large?v=v2&amp;amp;px=999" role="button" title="28557.png" alt="28557.png" /&gt;&lt;/span&gt;&lt;BR /&gt;The following code will perform a comparison of two DataTables and return a DataTable that contains the actual differences between them. However, this is looking for actual differences in DataRow objects. If the rows are simply in a different order, they don't count as a difference. That's just a sorting issue. The only way a DataRow is actually different is if it contains completely different field values.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28558.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28691i652EBB4B5BBD8D6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="28558.png" alt="28558.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28559.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28690iD12A55A121AAA0E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="28559.png" alt="28559.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28561.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28696i392B244F0646BF14/image-size/large?v=v2&amp;amp;px=999" role="button" title="28561.png" alt="28561.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28562.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28692iAD622CA06248C502/image-size/large?v=v2&amp;amp;px=999" role="button" title="28562.png" alt="28562.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Here's the actual code:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;var differences = excel2.AsEnumerable().Except(excel1.AsEnumerable(), DataRowComparer.Default);
Differences = differences.Any() ? differences.CopyToDataTable() : new DataTable();​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;FYI - Your username on the Community probably shouldn't contain an "@" sign as it screws up the mention feature a bit.&amp;nbsp;&lt;/P&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>Thu, 27 Jan 2022 17:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85888#M36823</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-01-27T17:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85889#M36824</link>
      <description>Original Message:&lt;BR /&gt;Sent: 01-27-2022 12:12&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="df610ce2-9c88-49f6-ad84-3ba0c0520782"&gt;@cs&lt;/A&gt;&lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt; &lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt;" data-itemmentionkey="b8bdb7f6-0929-4b19-bb49-8ee8b79feecd" biobubblekey="mentionb81700d3-e5fb-4ff6-b924-c1464624e2cf" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-can-remove="True"&amp;gt;@&lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt; &lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;What you're describing sounds like a type of SQL JOIN. A situation where you have two tables and you want to get a collection of rows from those tables based on some condition that exists, or doesn't, between them.&lt;BR /&gt;&lt;BR /&gt;I came across an article on Microsoft's Developer Network that seems related and includes an example of how to compare two DataTables (that's what a Collection is under the hood) and return a third. Perhaps this solution will cover your needs?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://social.msdn.microsoft.com/Forums/en-US/502ef961-2644-41d6-84be-464d28fcc24d/compare-two-datatables-and-return-3rd-with-difference?forum=aspwebforms" target="_blank" rel="noopener"&gt;https://social.msdn.microsoft.com/Forums/en-US/502ef961-2644-41d6-84be-464d28fcc24d/compare-two-datatables-and-return-3rd-with-difference?forum=aspwebforms&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&amp;nbsp; ​&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;Original Message:&lt;BR /&gt;Sent: 01-26-2022 20:06&lt;BR /&gt;From: &lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt; &lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt;&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;Hello to all &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;I have a scenario.....&lt;BR /&gt;1, Compare 2 excel files, each file contains 18 columns and approx. 7000 rows.&lt;BR /&gt;2, Columns are the same 18 in both files but rows may be different.&lt;BR /&gt;3, I need to compare these 2 files and find out the difference then take that difference as an output copy into excel.&lt;BR /&gt;Now, created a process and it partially worked in one scenario eg. if the columns and rows are the same then it compares row to row and extracts the difference correctly.&lt;BR /&gt;BUT when there is a difference in rows in both files eg. in one file 6000 and in 2nd file 5000 then the result is completely wrong.&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; D&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; D&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E&lt;/P&gt;
&lt;P&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #00ffff;"&gt;AB&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #00ffff;"&gt;XY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 56&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;SPAN style="background-color: #00ffff;"&gt;44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SS&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;SPAN style="background-color: #00ffff;"&gt;GG&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;JJ&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #00ffff;"&gt;Till here it's fine and result are ok&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;24&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="background-color: #ff0000;"&gt; 26 &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;BUT from here onwards results are showing wrong&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;25&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;27&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;26&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;&amp;nbsp; 11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;24&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;27&lt;/SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;STRONG&gt;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: #ff0000;"&gt;25&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have created 2 collections for these 2 excel files and then merged these 2 collections into 1 collection.&lt;BR /&gt;And then compare row by row for each column, till first 2 rows the result is fine but afterward it's giving the wrong result.&lt;BR /&gt;&lt;BR /&gt;Is there any way out to compare these files like..... eg. the value (24 )in the 3rd row of the 2nd column (B) in the first file, if it won't find the value&amp;nbsp; (24) in the 3rd row of the 2nd column in 2nd file then it should move directly to 4th row of 2nd file until it gets the same value till the end? AND if it won't find the value in the 2ns file till the end then it should come back to the 4th row of the first file and start the comparison again in the same way and if it found any difference then catch it and save?&lt;BR /&gt;&lt;BR /&gt;I hope some code stage will work BUT honestly, I don't have any idea as of now.&lt;BR /&gt;&lt;BR /&gt;If you supporter/helper need any other information then please feel free to ask me.&lt;BR /&gt;Will be highly grateful for any reply !!!&lt;BR /&gt;Thank you&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt; &lt;A href="mailto:csandms1@gmail.com"&gt;csandms1@gmail.com&lt;/A&gt;&lt;BR /&gt;------------------------------​</description>
      <pubDate>Mon, 31 Jan 2022 12:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85889#M36824</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-01-31T12:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85890#M36825</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="b6ab37d7-027d-48c7-a7d5-5eb958c18a24"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;No need to apologize. I'm simply a bit thick-headed sometimes. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;BR /&gt;&lt;BR /&gt;So it looks like you're doing some General Ledger comparison. From your example I'm making the following assumptions:&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;Column &lt;STRONG&gt;CoCode&lt;/STRONG&gt; will always be the same, so we can effectively ignore it.&lt;/LI&gt;
&lt;LI&gt;Column &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt; becomes our primary key, and all comparisons will be based off it.&lt;/LI&gt;
&lt;LI&gt;The column definitions (basically the schema) between the two files (i.e. Collections) will be the same.&lt;/LI&gt;
&lt;/UL&gt;
Given these assumptions I still think Linq is going to be your best bet, but it will be a slightly more complex query.​&lt;BR /&gt;&lt;BR /&gt;I've set up another example below. I'm using smaller Collection definitions than what your actual files reflect, but the solution should still apply.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Collection1 - Master File&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28566.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28695i800E529EB13E5526/image-size/large?v=v2&amp;amp;px=999" role="button" title="28566.png" alt="28566.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Collection2&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28567.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28697iC3B3CF550F4272FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="28567.png" alt="28567.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;STRONG&gt;Code Stage&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28568.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28698i032BE25499229A5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="28568.png" alt="28568.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28569.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28699i1D16A51EDF09B656/image-size/large?v=v2&amp;amp;px=999" role="button" title="28569.png" alt="28569.png" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;var differences =
	(from drColl2 in Collection2.AsEnumerable()
	join drColl1 in Collection1.AsEnumerable() on drColl2.Field&amp;lt;string&amp;gt;(@"G/L Acct") equals drColl1.Field&amp;lt;string&amp;gt;(@"G/L Acct") into match
	from drColl1 in match.DefaultIfEmpty()
	where drColl1 == null || !DataRowComparer.Default.Equals(drColl2, drColl1)
	select drColl2).ToList();

Differences = differences.CopyToDataTable();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;The above code basically performs a SQL Join on the two collections, using &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt; as the primary key, and returns any rows where:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;the values of any of the other columns, in Collection2, do not match between rows, of Collection1, that have a matching &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;any rows, from Collection2, that do not have a matching &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt; in Collection1.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="28570.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28700iC7A002F52FE442BE/image-size/large?v=v2&amp;amp;px=999" role="button" title="28570.png" alt="28570.png" /&gt;&lt;/span&gt;&lt;BR /&gt;If you only wanted to perform the comparison on certain columns you could revise the above WHERE clause to look at specific columns:&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;var differences =
    (from drColl2 in Collection2.AsEnumerable()
     join drColl1 in Collection1.AsEnumerable() on drColl2.Field&amp;lt;string&amp;gt;(@"G/L Acct") equals drColl1.Field&amp;lt;string&amp;gt;(@"G/L Acct") into match
	 from drColl1 in match.DefaultIfEmpty()
     where drColl1 == null || drColl2.Field&amp;lt;string&amp;gt;(@"Acct Curr") != drColl1.Field&amp;lt;string&amp;gt;(@"Acct Curr")
     select drColl2).ToList();
​
Differences = differences.CopyToDataTable();&lt;/CODE&gt;&lt;/PRE&gt;
&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28571.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28702i207598A6E9ACE1A0/image-size/large?v=v2&amp;amp;px=999" role="button" title="28571.png" alt="28571.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;&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>Mon, 31 Jan 2022 18:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85890#M36825</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-01-31T18:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85891#M36826</link>
      <description>Original Message:&lt;BR /&gt;Sent: 01-31-2022 18:03&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="b6ab37d7-027d-48c7-a7d5-5eb958c18a24"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;No need to apologize. I'm simply a bit thick-headed sometimes. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;So it looks like you're doing some General Ledger comparison. From your example I'm making the following assumptions:&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;Column &lt;STRONG&gt;CoCode&lt;/STRONG&gt; will always be the same, so we can effectively ignore it.&lt;/LI&gt;
&lt;LI&gt;Column &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt; becomes our primary key, and all comparisons will be based off it.&lt;/LI&gt;
&lt;LI&gt;The column definitions (basically the schema) between the two files (i.e. Collections) will be the same.&lt;/LI&gt;
&lt;/UL&gt;
Given these assumptions I still think Linq is going to be your best bet, but it will be a slightly more complex query.​&lt;BR /&gt;&lt;BR /&gt;I've set up another example below. I'm using smaller Collection definitions than what your actual files reflect, but the solution should still apply.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Collection1 - Master File&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28583.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28712i1EF46AFBE43287BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="28583.png" alt="28583.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Collection2&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28584.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28716i38F3EF2F0011D74C/image-size/large?v=v2&amp;amp;px=999" role="button" title="28584.png" alt="28584.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;STRONG&gt;Code Stage&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28585.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28714iE63BE7BE69109E87/image-size/large?v=v2&amp;amp;px=999" role="button" title="28585.png" alt="28585.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28586.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28713iDC7491510BDFD94A/image-size/large?v=v2&amp;amp;px=999" role="button" title="28586.png" alt="28586.png" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;var differences =	(from drColl2 in Collection2.AsEnumerable()	join drColl1 in Collection1.AsEnumerable() on drColl2.Field&amp;lt;string&amp;gt;(@"G/L Acct") equals drColl1.Field&amp;lt;string&amp;gt;(@"G/L Acct") into match	from drColl1 in match.DefaultIfEmpty()	where drColl1 == null || !DataRowComparer.Default.Equals(drColl2, drColl1)	select drColl2).ToList();Differences = differences.CopyToDataTable();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;The above code basically performs a SQL Join on the two collections, using &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt; as the primary key, and returns any rows where:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;the values of any of the other columns, in Collection2, do not match between rows, of Collection1, that have a matching &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;any rows, from Collection2, that do not have a matching &lt;STRONG&gt;G/L Acct&lt;/STRONG&gt; in Collection1.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="28587.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28719i139DF78DB04895AC/image-size/large?v=v2&amp;amp;px=999" role="button" title="28587.png" alt="28587.png" /&gt;&lt;/span&gt;&lt;BR /&gt;If you only wanted to perform the comparison on certain columns you could revise the above WHERE clause to look at specific columns:&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;var differences =    (from drColl2 in Collection2.AsEnumerable()     join drColl1 in Collection1.AsEnumerable() on drColl2.Field&amp;lt;string&amp;gt;(@"G/L Acct") equals drColl1.Field&amp;lt;string&amp;gt;(@"G/L Acct") into match	 from drColl1 in match.DefaultIfEmpty()     where drColl1 == null || drColl2.Field&amp;lt;string&amp;gt;(@"Acct Curr") != drColl1.Field&amp;lt;string&amp;gt;(@"Acct Curr")     select drColl2).ToList();​Differences = differences.CopyToDataTable();&lt;/CODE&gt;&lt;/PRE&gt;
&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28588.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28717i2C95E7523438108B/image-size/large?v=v2&amp;amp;px=999" role="button" title="28588.png" alt="28588.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;&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;</description>
      <pubDate>Tue, 01 Feb 2022 12:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85891#M36826</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-02-01T12:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85892#M36827</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@CSANDMS1" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="a7464d1e-7d8a-49a9-b2b7-3789f230a875"&gt;@CSANDMS1&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Let me clarify a bit. When I said we can ignore the CoCode, what I meant is that the comparison you perform will always be against a Master File and Comparison File that have the same CoCode. I was not implying that the CoCode was not important, or that the solution above couldn't be run in a loop.&lt;BR /&gt;&lt;BR /&gt;You can always add a small bit of logic at the front end to first verify that both files are for the same CoCode​, or you can extend the Linq query to include CoCode as part of the join (if there's a chance that one&amp;nbsp; or both of the files could contain multiple different CoCodes).&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>Tue, 01 Feb 2022 12:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85892#M36827</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-02-01T12:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85893#M36828</link>
      <description>Original Message:&lt;BR /&gt;Sent: 02-01-2022 12:12&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="a7464d1e-7d8a-49a9-b2b7-3789f230a875"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Let me clarify a bit. When I said we can ignore the CoCode, what I meant is that the comparison you perform will always be against a Master File and Comparison File that have the same CoCode. I was not implying that the CoCode was not important, or that the solution above couldn't be run in a loop.&lt;BR /&gt;&lt;BR /&gt;You can always add a small bit of logic at the front end to first verify that both files are for the same CoCode​, or you can extend the Linq query to include CoCode as part of the join (if there's a chance that one&amp;nbsp; or both of the files could contain multiple different CoCodes).&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;</description>
      <pubDate>Thu, 03 Mar 2022 17:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85893#M36828</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-03-03T17:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85894#M36829</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@CSANDMS1" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="779b76e4-13b8-405e-8e36-f4d671084066"&gt;@CSANDMS1&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Apologies for the delayed response. I was out of the office today. There are two DLL's you'll want to reference:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;System.Linq.dll&lt;/LI&gt;
&lt;LI&gt;System.Data.DataSetExtensions.dll&lt;/LI&gt;
&lt;/UL&gt;
&lt;BR /&gt;For Namespace Imports, you'll want to include &lt;EM&gt;&lt;STRONG&gt;System.Linq&lt;/STRONG&gt;&lt;/EM&gt;.&lt;BR /&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>Thu, 03 Mar 2022 23:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85894#M36829</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-03T23:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85895#M36830</link>
      <description>Original Message:&lt;BR /&gt;Sent: 03-03-2022 23:28&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="779b76e4-13b8-405e-8e36-f4d671084066"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Apologies for the delayed response. I was out of the office today. There are two DLL's you'll want to reference:&lt;BR /&gt;&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;System.Linq.dll&lt;/LI&gt;
&lt;LI&gt;System.Data.DataSetExtensions.dll&lt;/LI&gt;
&lt;/UL&gt;
&lt;BR /&gt;For Namespace Imports, you'll want to include &lt;EM&gt;&lt;STRONG&gt;System.Linq&lt;/STRONG&gt;&lt;/EM&gt;.&lt;BR /&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;</description>
      <pubDate>Thu, 10 Mar 2022 12:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85895#M36830</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-03-10T12:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85896#M36831</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@CSANDMS1" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="6e8781c0-06a3-4d6a-8239-186f4e895d8a"&gt;@CSANDMS1&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;On the &lt;STRONG&gt;differences&lt;/STRONG&gt; error, did you define an Output data item names &lt;STRONG&gt;differences&lt;/STRONG&gt; too? If so, that's the cause. Basically you have an Output variable with the same name as the internal &lt;EM&gt;&lt;STRONG&gt;var differences&lt;/STRONG&gt;&lt;/EM&gt; variable you defined in the code. If you refer back to my example, I used a capital "D" on the output data item. It makes a difference, no pun intended, because of case sensitivity.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28682.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28814i242CCE16070716A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="28682.png" alt="28682.png" /&gt;&lt;/span&gt; ​&lt;BR /&gt;For the first error, I'm not sure on that one. Would you post a screenshot of your &lt;STRONG&gt;Code Options&lt;/STRONG&gt; page?&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>Thu, 10 Mar 2022 12:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85896#M36831</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-10T12:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85897#M36832</link>
      <description>&lt;P&gt;Original Message:&lt;/P&gt;
Sent: 03-10-2022 12:41&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="6e8781c0-06a3-4d6a-8239-186f4e895d8a"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;On the &lt;STRONG&gt;differences&lt;/STRONG&gt; error, did you define an Output data item names &lt;STRONG&gt;differences&lt;/STRONG&gt; too? If so, that's the cause. Basically you have an Output variable with the same name as the internal &lt;EM&gt;&lt;STRONG&gt;var differences&lt;/STRONG&gt;&lt;/EM&gt; variable you defined in the code. If you refer back to my example, I used a capital "D" on the output data item. It makes a difference, no pun intended, because of case sensitivity.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28696.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28828i106A22B32BFDBA7B/image-size/large?v=v2&amp;amp;px=999" role="button" title="28696.png" alt="28696.png" /&gt;&lt;/span&gt; ​&lt;BR /&gt;For the first error, I'm not sure on that one. Would you post a screenshot of your &lt;STRONG&gt;Code Options&lt;/STRONG&gt; page?&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;</description>
      <pubDate>Fri, 11 Mar 2022 14:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85897#M36832</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-03-11T14:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85898#M36833</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@CSANDMS1" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="fc34e9e1-da37-4d7a-93fd-a32c0bf1b72e"&gt;@CSANDMS1&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;There's one DLL reference I forgot. You need to add &lt;STRONG&gt;System.Core.dll&lt;/STRONG&gt; to your &lt;EM&gt;&lt;STRONG&gt;External References&lt;/STRONG&gt;&lt;/EM&gt;.&lt;BR /&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>Fri, 11 Mar 2022 17:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85898#M36833</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-11T17:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85899#M36834</link>
      <description>&lt;BR /&gt;Original Message:&lt;BR /&gt;Sent: 03-11-2022 17:24&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="fc34e9e1-da37-4d7a-93fd-a32c0bf1b72e"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;There's one DLL reference I forgot. You need to add &lt;STRONG&gt;System.Core.dll&lt;/STRONG&gt; to your &lt;EM&gt;&lt;STRONG&gt;External References&lt;/STRONG&gt;&lt;/EM&gt;.&lt;BR /&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;</description>
      <pubDate>Thu, 24 Mar 2022 14:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85899#M36834</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-03-24T14:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85900#M36835</link>
      <description>What version of Blue prism are you using? I tried importing your VBO, but BP threw an "unrecognized GUID format" error. Are you using a localized version of the software (different language)?&lt;BR /&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>Thu, 24 Mar 2022 16:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85900#M36835</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-24T16:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85901#M36836</link>
      <description>Original Message:&lt;BR /&gt;Sent: 03-24-2022 16:49&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;What version of Blue prism are you using? I tried importing your VBO, but BP threw an "unrecognized GUID format" error. Are you using a localized version of the software (different language)?&lt;BR /&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;</description>
      <pubDate>Thu, 24 Mar 2022 17:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85901#M36836</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-03-24T17:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85902#M36837</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="a1cdb623-d06a-4136-a05f-8c55bfe8e2ee"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;The first, of the two, compile errors you have there is because you're defining an output variable in the &lt;STRONG&gt;Code1&lt;/STRONG&gt; stage, on the page &lt;STRONG&gt;Community Solution&lt;/STRONG&gt;, called &lt;EM&gt;&lt;STRONG&gt;differences&lt;/STRONG&gt;&lt;/EM&gt;, but you're also defining an actual C# variable in the source code named &lt;EM&gt;&lt;STRONG&gt;differences&lt;/STRONG&gt;.&lt;/EM&gt;&amp;nbsp;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28794.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28927iA1FD9BC9C0FF8194/image-size/large?v=v2&amp;amp;px=999" role="button" title="28794.png" alt="28794.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;​Notice, I've changed the Output parameter name to &lt;EM&gt;&lt;STRONG&gt;Differences&lt;/STRONG&gt;&lt;/EM&gt; with a capital 'D'. There are a million different ways you could change this to resolve the name conflict.&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28795.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28929i9242C087AC1110CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="28795.png" alt="28795.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;I'm thinking once you resolve that name conflict, it may resolve the second error too.&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>Thu, 24 Mar 2022 22:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85902#M36837</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-24T22:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85903#M36838</link>
      <description>Original Message:&lt;BR /&gt;Sent: 03-24-2022 22:59&lt;BR /&gt;From: Eric Wilson&lt;BR /&gt;Subject: Issue related Excel Data Comparison&lt;BR /&gt;&lt;BR /&gt;&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="a1cdb623-d06a-4136-a05f-8c55bfe8e2ee"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;The first, of the two, compile errors you have there is because you're defining an output variable in the &lt;STRONG&gt;Code1&lt;/STRONG&gt; stage, on the page &lt;STRONG&gt;Community Solution&lt;/STRONG&gt;, called &lt;EM&gt;&lt;STRONG&gt;differences&lt;/STRONG&gt;&lt;/EM&gt;, but you're also defining an actual C# variable in the source code named &lt;EM&gt;&lt;STRONG&gt;differences&lt;/STRONG&gt;.&lt;/EM&gt;&amp;nbsp;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28812.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28942i3289B3F20EDCED74/image-size/large?v=v2&amp;amp;px=999" role="button" title="28812.png" alt="28812.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;​Notice, I've changed the Output parameter name to &lt;EM&gt;&lt;STRONG&gt;Differences&lt;/STRONG&gt;&lt;/EM&gt; with a capital 'D'. There are a million different ways you could change this to resolve the name conflict.&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28813.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28947i1944783034CB8AAE/image-size/large?v=v2&amp;amp;px=999" role="button" title="28813.png" alt="28813.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;I'm thinking once you resolve that name conflict, it may resolve the second error too.&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;</description>
      <pubDate>Fri, 25 Mar 2022 11:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85903#M36838</guid>
      <dc:creator>cs</dc:creator>
      <dc:date>2022-03-25T11:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: Issue related Excel Data Comparison</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85904#M36839</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-tag-text="@cs" href="https://community.blueprism.com/network/profile?UserKey=b81700d3-e5fb-4ff6-b924-c1464624e2cf" data-itemmentionkey="a6172ab5-cdbe-4cec-9251-24b951a7845d"&gt;@cs&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;You're kill'n me. &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;In your screenshot of the DLL's, you show the language has been set to &lt;STRONG&gt;Visual Basic&lt;/STRONG&gt;. The example code I posted for you, is written in C#. The VBO you posted yesterday was also set to C#. So, somewhere along the line the language was changed. You need to change it back to C#, or, if you require VB for some other code stage you may be running, you'll have to convert the example code I gave you to VB.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28833.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28966i2543926409846D24/image-size/large?v=v2&amp;amp;px=999" role="button" title="28833.png" alt="28833.png" /&gt;&lt;/span&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>Fri, 25 Mar 2022 11:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-related-Excel-Data-Comparison/m-p/85904#M36839</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-03-25T11:28:00Z</dc:date>
    </item>
  </channel>
</rss>

