I'm working on an app for task management. It contains (among others) two lists: The first one contains the tasks and the second one contains all the people, that are working on the specific tasks. The two lists are related by the task ID from the main list.
Now I want to show the tasks in a gallery. One field should show the names of all the people (from the second list) that are working on that specific task, concatenated in one string.
I tried several syntax possibilities but either received an empty string or all the items from the second list show on each line of the primary list.
Can someone tell me what is the right syntax?
Thanks.