Hi All - I have created a simple app. It looks something like this -

I am fetching Reviewers from a SharePoint list to populate the label. list looks something like this -

Query used -
"Reviewers: " & Concat(Filter([@'ADM Reviewers'],'Current Reviewer'),Reviewer.DisplayName,"; ")
Now i have to reference a different SharePoint list. It looks something like this -

I have to get all the Approvers (type - Person or Group and allows multi value) where ScheduleStatus is yes. I tried below query and obviously my query did not work, i am guessing due to Approver field being a multiple value field
"Reviewers: " & Concat(Filter([@'ADM Reviewers'],'ScheduleStatus'),Approvers.DisplayName,"; ")
Need some help fixing this query. Thank you all !
and did i mention that i am very new to Apps 🙂