Hi,
I am trying to filter tables with lots of a 'many to many' relationship that has a intermediary.
I have a Student (1) ---->(Many) Student_Skills (Many)----> (1)Skills_Name
I want to be able to filter students by a chosen skill . e.g. find me all the student whose skill is dancing .
In SQL I would use either join or nested select statements
e.g.
select student name
from student where id in (Select studentId from student_skills where skillsId IN (Select id from skill_name where skillName = "dancing"))
I have tried nested filters but it doesn't work 😞 Any help much appreciated...just starting out with dataverse and power apps...the idea is to filter a gallery in a canvas app
Thanks