There are multiple 'Project' types (Drop, Install, Storm Work, Trip).
There is an SP List for each Project type.
Each Project can appear as one or more line items in the SP List based
on the number of 'Activities' associated with the Project.
There can be one or multiple 'Activities' associated with each Project.
Below is a sample from the 'Drop' SP List.
Each Project is assigned a 'Work Order Number' (the Title/Invoice Number in the below).
In the example, line items 1, 2 and 4 are the same company.
The lines 1 and 2 (Project 3) Project columns contain the same data. The Project 'Activity'
columns have different data, for the same Project.
My Power Apps Gallery, which is isolated to ONLY the Project data columns (NO ACTIVITY
DATA COLUMNS), should only show Project 3, once. But as you can see in the image,
Project 3 is appearing twice.
I have tried the formula with '...Title), Value)'. That works for the distinct, showing Project 3 once,
but it only returns the Title column, no other data. Using '...ThisRecord), Value) returns all data
desired, but does not enforce the Distinct requirement, and shows Projects multiple times.
SharePoint Drop List -

Below shows the gallery of data from the above SP List, using a formula where I am using Distinct on the source Dataset (Drop_Backup_Collection)
to create a 'unique' Dataset (colPendingUniqueDropData) that I can further filter. For whatever reason, I am unable to remove the duplicate.
ClearCollect(colPendingUniqueDropData, ForAll(Distinct(Drop_Backup_Collection, ThisRecord),Value))
Power Apps Gallery -
