I am facing the below issue
My Source A
My Source B
After outer join using Alteryx , I get the below results.
| ID | NAME | Right_ID | Right_Name |
| 1 | Jose | 1 | Jose |
| 2 | Anna | null | null |
| 4 | Joy | null | null |
But my expected output is as below, as I want to know which record is missing from which side .
| ID | NAME | Right_ID | Right_Name |
| 1 | Jose | 1 | Jose |
| 2 | Anna | null | null |
| null | null | 4 | Roy |
Is there any way? Attaching my workflow