@PaulRobbo1 - if you want just to filter the Workstream Activity Gallery (Child) based on the selected item from the Capability Workstream Overview Gallery (Parent), try a basic pattern like below:
Simple method:
Filter(
'Your child data',
'Your common field' = 'Your Parent Gallery'.Selected.'Your common field'
)
Another method:
1. On the OnSelect property of the Capability Workstream Overview Gallery (Parent), enter
Set(ThisSelectedItem,ThisItem.'Your common field')
2. In the Items property of the Workstream Activity Gallery (Child), enter:
Filter(
'Your child data',
'Your common field' = ThisSelectedItem
)
3. Set the Default property of the Capability Workstream Overview Gallery (Parent) to:
{}
4. (Optional), set the OnVisible property of the Screen to:
Reset('Your Parent Gallery');
Set(
ThisSelectedItem,
Blank()
);
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan