Limiting Data Using Constraints with a Get Data Form Url in A table

New ish to Bubble and getting on well but I’ve hit an issue with showing Data in a table

On the table I am doing a search for Data type
I then have a constraint to limit the data for the table
Unique id = Get SendSelectedWorkRequired3 from page URL

So this works when I only have one Unique ID in the parameter “SendSelectedWorkRequired3”

But I have Multiple Unique ID’s in the parameter “SendSelectedWorkRequired3” which is what I expect as from the previous screen the user has an option to select Multiple data in this Datatype

So question
How do I get the constraint to look at all the Unique ID’s and only show data which matches each Unique ID

I have tried changing the “=” to “is in” but when I do that the statement fails (shows in Red). What am I missing/doing wrong?

Thanks for your help

is it possible to send a picture of your workflow so i better can understand how the setup is :blush:

Parameters are only one value when extracted by bubble. Need a separator between the values in the parameter so that once extracted by url the parameter can use the split by operator to turn the single string into list of texts.

Search my forum posts on url parameters as a list for detailed explanation

Thank you for that, Worked out what I was doing wrong
Changed : Unique id = Get SendSelectedWorkRequired3 from page URL
to: Unique id is in Get SendSelectedWorkRequired3 from page URL:splitby(, )