Hello,
I have three tables, which make up my attribute view. The middle table is just an association table that links both(Activity table to Organization table). Some Activities have more than one Organization. So here is an example of what the data preview looks like
| Activity | Organization |
|---|---|
| 1 | A |
| 1 | B |
| 1 | C |
| 2 | A |
| 2 | D |
I need to figure out a view in which I can see a list of all the distinct Activities and they're organizations.
Like this
| Activity | Org1 | Org2 | Org3 |
|---|---|---|---|
| 1 | A | B | C |
| 2 | A | D |
Is this possible?
Thanks in advance.