I’m working to build an approval panel where I have an approval list in SharePoint. As output, I made a Gallery to read the approvals for the request. The issue here is that each approver has more than one approval for the same request because of the return of the request from other approvers.
In the following ss of the SharePoint list:

And here is an example of the output gallery:

The filter of the gallery is as follows:
Sort(
Filter(
Filter(
Approvals,
Parent_ID = varRecord.ID
),
"SpecificWord" in Title
),
Created,
SortOrder.Ascending
)
I’m trying to avoid repeating the approver's name here. So, for each box in the gallery, only one unique name.
I spend days trying to use filter/distinct/first in many ways without success.
Your support is much appreciated.
Thank you,