Reputation: 3746
I have 2 sources as follows:
I need to do a filter on Source 1 such that output contains only values with Colors except Green, Blue, Black:
This is how my data flow looks like:
Is there a different way to do this using a join with Source 2 Color?
Upvotes: 0
Views: 73
Reputation: 3838
If you want to filter the person names based on color names, then you'll need to first join and then you can filter on color name.
Upvotes: 1