Hi @ralphaj ,
So, tasks table has a LookUp column to the task group table and task group table has a LookUp column to the project task template table. Since Dataverse does not support multi-level reference of LookUps, you need to get tasks level by level. Please try below method:
1. Use selected project task template GUID to filter in task group table:
Filter('task groups', 'project tasks templates'.'projecttasktemplate' = projecttasktemplatesCombobox.Selected.'projecttasktemplate')
This is a list of task groups that include selected project task templates.
2. Filter the tasks table to list tasks that included in the task groups list:
Filter(Tasks, 'Task Group'.'taskgroup' in
Filter('Task Groups', 'project tasks templates'.'projecttasktemplate' = projecttasktemplatesCombobox.Selected.'projecttasktemplate').'taskgroup')
'projecttasktemplate' and 'taskgroup' are unique identifier GUID column in respective table.
Best regards,