Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ahinesI have a group of data that has unique identifiers based on a process. Each of the processes that go together receive the same reconcile number, indicating the steps in the process that go together. Normally they are a 1:1- two lines, 1 reconcile number on each line that matches. I have a very large data set now that has some instances where there is a more than 1:1. I need to be able to find all the lines of data that have the same reconcile number that is more than 2 lines, and separate them from everything else. I tried to use an Agg Ex node to group by the reconcile number and add a column of data equal to the number of lines in the group. That way I would see 2's and 3's in the column and be able to split based on that, but I could only get as close as counting lines in the group (1, 2, 3). See example below.
12345
12345
12346
12346
12346
12347
12347
12348
12348
12349
12349
12349
I'd like to split this so all the lines with 12346 and 12349 (because there are three of them) are separated.
thanks!