HI,
What is the easiest workflow to do a simple left outer join?
I have a data table :
ID | CODE |
1 | a |
2 | a |
3 | b |
4 | b |
5 | b |
6 | c |
7 | d |
8 | e |
a look up table :
CODE | Value |
a | XYZ |
b | DEF |
e | KJL |
And I require the following output :
ID | CODE | Value |
1 | a | XYZ |
2 | a | XYZ |
3 | b | DEF |
4 | b | DEF |
5 | b | DEF |
6 | c | |
7 | d | |
8 | e | KJL |
Can anyone advise please?
Many thanks!
Solved! Go to Solution.
Use the Join Multiple tool and join on Code. Leave "Only Output Records that Join from All Inputs" unchecked.
thanks @MSalvage, works perfectly
hey @fiorano does the attached workflow give the output you're looking for?
Thanks a lot.
Learnt from your example 🙂
Thank you so much for this! I'd thought that the "join" action would include a checkbox option to allow an outer join. This is a much more sexier solution than the join + union combo action.