Xplenty now supports the capability to join dataflows using non-equality conditions to compare values between the dataflows. This is done using the new cross join component to define the data sources to join and then applying a filter to the joined dataflow.
For example, to match people in dataflow1 with younger people in dataflow2 you simply:
- Cross join dataflow1 with dataflow2
- Filter the resulting dataflow with a condition that age from dataflow1 is greater than age from dataflow2
There you have a new feature to make your data processing that much smoother.