I have two datasets (Day 1 and Day 2) joined in Alteryx with multiple matching conditions.
After the Join, one Day 2 record can match multiple Day 1 records, but I need to ensure that:
each Day 2 record is used only once
the first (best) match keeps it
subsequent matches are discarded
The best match is determined by sorted priority (date difference, document number).
What is the recommended Alteryx pattern to enforce this one-to-one match?
Multi-Row Formula after sorting? Iterative macro? Another approach?
Looking for a scalable and deterministic solution.