Original Message:
Sent: 03-24-2022 22:59
From: Eric Wilson
Subject: Issue related Excel Data Comparison
@cs,
The first, of the two, compile errors you have there is because you're defining an output variable in the
Code1 stage, on the page
Community Solution, called
differences, but you're also defining an actual C# variable in the source code named
differences.
Notice, I've changed the Output parameter name to
Differences with a capital 'D'. There are a million different ways you could change this to resolve the name conflict.
I'm thinking once you resolve that name conflict, it may resolve the second error too.
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 03-24-2022 16:49
From: Eric Wilson
Subject: Issue related Excel Data Comparison
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)?
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 03-11-2022 17:24
From: Eric Wilson
Subject: Issue related Excel Data Comparison
@cs,
There's one DLL reference I forgot. You need to add
System.Core.dll to your
External References.
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 03-10-2022 12:41
From: Eric Wilson
Subject: Issue related Excel Data Comparison
@cs,
On the
differences error, did you define an Output data item names
differences too? If so, that's the cause. Basically you have an Output variable with the same name as the internal
var differences 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.
For the first error, I'm not sure on that one. Would you post a screenshot of your
Code Options page?
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 03-03-2022 23:28
From: Eric Wilson
Subject: Issue related Excel Data Comparison
@cs,
Apologies for the delayed response. I was out of the office today. There are two DLL's you'll want to reference:
- System.Linq.dll
- System.Data.DataSetExtensions.dll
For Namespace Imports, you'll want to include
System.Linq.
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 02-01-2022 12:12
From: Eric Wilson
Subject: Issue related Excel Data Comparison
@cs,
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.
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 or both of the files could contain multiple different CoCodes).
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 01-31-2022 18:03
From: Eric Wilson
Subject: Issue related Excel Data Comparison
Hello
@cs,
No need to apologize. I'm simply a bit thick-headed sometimes. :)
So it looks like you're doing some General Ledger comparison. From your example I'm making the following assumptions:
- Column CoCode will always be the same, so we can effectively ignore it.
- Column G/L Acct becomes our primary key, and all comparisons will be based off it.
- The column definitions (basically the schema) between the two files (i.e. Collections) will be the same.
Given these assumptions I still think Linq is going to be your best bet, but it will be a slightly more complex query.
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.
Collection1 - Master FileCollection2
Code Stage
var differences = (from drColl2 in Collection2.AsEnumerable() join drColl1 in Collection1.AsEnumerable() on drColl2.Field<string>(@"G/L Acct") equals drColl1.Field<string>(@"G/L Acct") into match from drColl1 in match.DefaultIfEmpty() where drColl1 == null || !DataRowComparer.Default.Equals(drColl2, drColl1) select drColl2).ToList();Differences = differences.CopyToDataTable();
The above code basically performs a SQL Join on the two collections, using
G/L Acct as the primary key, and returns any rows where:
- the values of any of the other columns, in Collection2, do not match between rows, of Collection1, that have a matching G/L Acct.
- any rows, from Collection2, that do not have a matching G/L Acct in Collection1.
If you only wanted to perform the comparison on certain columns you could revise the above WHERE clause to look at specific columns:
var differences = (from drColl2 in Collection2.AsEnumerable() join drColl1 in Collection1.AsEnumerable() on drColl2.Field<string>(@"G/L Acct") equals drColl1.Field<string>(@"G/L Acct") into match from drColl1 in match.DefaultIfEmpty() where drColl1 == null || drColl2.Field<string>(@"Acct Curr") != drColl1.Field<string>(@"Acct Curr") select drColl2).ToList();Differences = differences.CopyToDataTable();
Hope this helps.
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 01-27-2022 17:50
From: Eric Wilson
Subject: Issue related Excel Data Comparison
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?
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.
Here's the actual code:
var differences = excel2.AsEnumerable().Except(excel1.AsEnumerable(), DataRowComparer.Default);Differences = differences.Any() ? differences.CopyToDataTable() : new DataTable();
FYI - Your username on the Community probably shouldn't contain an "@" sign as it screws up the mention feature a bit.
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
Original Message:
Sent: 01-27-2022 15:27
From:
csandms1@gmail.com csandms1@gmail.comSubject: Issue related Excel Data Comparison
Dear Mr. Wilson,
First of all, thank you so much for the instant reply. Really, it's an honor!!!
Just some additional points would like to highlight...
1, Is there any possibility that we can complete this via Blueprism?
2, In my case, First excel is the master sheet, where the data is correct. And wants to compare with 2nd excel where some rows are missed OR the data in the cells in the same row is different. (as mentioned up and highlighted in red and blue color).
If any other information is needed then please feel free to ask me any time.
Thanks
------------------------------
csandms1@gmail.com csandms1@gmail.comOriginal Message:
Sent: 01-27-2022 12:12
From: Eric Wilson
Subject: Issue related Excel Data Comparison
Hello
@cscsandms1@gmail.com csandms1@gmail.com" 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">@
csandms1@gmail.com csandms1@gmail.com,
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.
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?
https://social.msdn.microsoft.com/Forums/en-US/502ef961-2644-41d6-84be-464d28fcc24d/compare-two-datatables-and-return-3rd-with-difference?forum=aspwebformsCheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange