Hi, I'm very new to Alteryx and have tried the solution provided in some of the community discussion here but to no avail. I hope someone can help enlighten me with the errors I encountered please.
I have a master file with below details and would like to include the first 4 columns in the output only. Hence i use a Select tool to choose the first 4 columns.
| Action Plan ID | Action Name | Action Description | Owner | Process timeline | Risk |
| 1 | Plan | To plan | John | 2 weeks | Medium |
| 2 | Build | To build | Sam | 5 weeks | High |
| 3 | Supervise | To supervise | Peter | 2 weeks | Medium |
| 4 | Checks | To check | Tom | 1 week | Medium |
But i would also like to add on the "Department" and "Subgroup" from another file into the Master File above based on the Action Plan ID
| Action Plan ID | Action Name | Action Description | Owner | Department | Sub group |
| 1 | Plan | To plan | John | A | Albatross |
| 2 | Build | To build | Sam | B | Bald Eagle |
| 3 | Supervise | To supervise | Peter | C | Cuckoo |
| 4 | Checks | To check | Tom | D | Dodo |
I used the Join function based on Action Plan ID and checked the boxes for Department and Sub Group but it doesn't not seem to work.
Which part did i make the mistake please? Thanks in advance