Hello,
For some context, I have a complex database in Microsoft SQL Server with a junction (or some say link) table because of a many-to-many relationship.
For example, I have a table called UseCases and a table called Drivers. This is a many-to-many relationship, with it looking like this.

My issue is when I want to display the drivers that are aligned to each use case. I have to do a nested filter, because I first need to get all the Driver_id's aligned with the specific UseCase_id from the junction table, and then filter those ID's in the Drivers table to actually show the name values.
My function is this on a dropdown (uc_id is passed into the screen where this takes place. It is the UseCase ID):
Filter(Drivers, key_id in Filter(DriversToUseCase,UseCase_id=uc_id).Driver_id)
However, I am getting a delegation warning on that "in" operator. Is there any advice to get around this? My junction table will likely go over 2000 records at some point, meaning I cannot just ignore the delegation warning. Also, again, I am using SQL server as my data source.
Thanks!