Hi, you can achieve this with a data flow:
- Join the two dataset using Union
- Use Aggregate to add a count column which holds the number of times a row exists. In the Aggregate, under "Group by", select all columns, then under "Aggregate" add a column "Count" with expression "count()"
- Use Filter to only return the rows where Count equals 1. The expression is "Count==1"
I hope this helps you get started.