Hi there,
Thanks for the many ressources shared here.
Here is my problem : I have two tables "Participants" and "Groups". Groups contains a EnumList column "PeopleOfTheGroup" (refering Participants).
I'm first showing the participants list; after chosing one, the app should go to Groups view filtered with only this participant's groups. For instance :
I've set an action on Participants view with this :
LINKTOFILTEREDVIEW("Groups", IN([_THISROW].[Name], [PeopleOfTheGroup]))
And... it's not working.
When testing with a fixed list instead of PeopleOfTheGroup, the filtering is working. So I guess there's something I'm missing with that dynamic filtering of a list.
Any help is welcomed, as I'm struggling with this since a few hours !
Thanks,
Mike.
@MikeBerte wrote:
LINKTOFILTEREDVIEW("Groups", IN([_THISROW].[Name], [PeopleOfTheGroup]))
Please try
LINKTOFILTEREDVIEW("Groups", IN([_THISROW].[Name], SPLIT(TEXT(Groups[PeopleOfTheGroup]),",")))
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |