Dear community,
as I am new to Alteryx, I need your help with the following task: I have two files, one with a list of IDs and one with references to those IDs. Now I want to count the number of occurences of each ID of the first file in the second file. Here is an example:
First file (for which I want to compute the second and third column now):
| ID | No of occurences citing | No of occurences cited |
| asd123 | 1 | 1 |
| fgh456 | 2 | 0 |
| qwe123 | 0 | 2 |
Second file:
| No | ID citing | ID cited |
| 1 | asd123 | qwe123 |
| 2 | fgh456 | qwe123 |
| 3 | fgh456 | asd123 |
Can anyone help with a simple solution?
Thanks!