Collections opening to same source

What you need to do is create a custom collection item click action, with a separate conditional branch for each item in the list.

So first make sure each row has a column that uniquely identifies it - I usually just number the rows - and then build an action like:

  • If ID equals 1, then
    — Some action 1
    — Some other action
  • else if ID equals 2, then
    — another action
    — yet another action
  • etc
1 Like