Icon

Recursively Remove Duplicates

<p>Using recursive loop to remove rows that match certain rules.</p><p>On each recursive iteration, Rule 1 is tested. If a pair of rows match the rule, they are removed. If no rows match rule 1, then Rule 2 is tested. Again if a pair of rows match the rule they are removed.<br><br>If there is only 1 row remaining, the recursive loop ends. If no rows were removed in the iteration the recursive loop ends. <br><br>This is then applied by a group loop to each group of rows.</p><p></p><p>See Forum post link for more details.<br><br></p><p>@takbb Brian Bates 25 Nov 2024<br></p>

Nodes

Extensions

Links