By selecting each item, you need to "collect the id's" selected.
And then, use can use an Advance Query (with a IN clause), instead of an Aggregate list those tools.
something like this:
And then, use can use an Advance Query (with a IN clause), instead of an Aggregate list those tools.
something like this:
SELECT *
FROM table_name
WHERE column_ID IN (id1,id2,...);