Hi @MikeTwister,
Could you please share a bit more about your data source used to store the projects? Is it a SP list?
I assume that your data source is a SP list, I have made a test on my side, please take a try with the following workaround:
Set the Items proeprty of the Data Table control to following formula:
Filter(
RenameColumns(Filter('20181109_case3','Approved/Denied'.Value="Approved"),"ProjectName","ProjectName1"),
IsBlank(LookUp('20181109_case3',ProjectName=ProjectName1 && Approved_x002f_Denied.Value="Removed"))
)
Note: The Approved/Denied column is a Choice type coumn in my SP list. I assume that the Approved/Denied column is also a Choice type column in your SP list.
On your side, you should type:
Filter(
RenameColumns(Filter('YourSPList','Approved/Denied'.Value="Approved"),"ProjectName","ProjectName1"),
IsBlank(LookUp('YourSPList',ProjectName=ProjectName1 && Approved_x002f_Denied.Value="Removed"))
)
Above formula may cause a Delegation issue, in order to get rid of this issue, please also take a try with the following workaround:
Set the OnVisible property of the first screen of your app to following formula:
ClearCollect(RecordsCollection, 'YourSPList')
Set the Items proeprty of the Data Table control to following formula:
Filter(
RenameColumns(Filter(RecordsCollection,'Approved/Denied'.Value="Approved"),"ProjectName","ProjectName1"),
IsBlank(LookUp(RecordsCollection,ProjectName=ProjectName1 && Approved_x002f_Denied.Value="Removed"))
)
If your SP list have more than 2000 records, in order to get rid of the Delegation issue, you could consider take a try to convert the Approved/Denied column (Choice type column) into a Single line of text type column, then the Delegation issue would be solved.
Best regards,
Kris