Hi @seadude,
Could you please show more details about the Delegation issue within your app?
The exactin operator is not a Filter and LookUp delegable predicate in SQL table data source. More details about the supported Filter and LookUp delegable predicates in SQL table data source, please check the following article:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/delegation-list#filter-and-lookup-delegable-predicates
As an alternative solution, you could consider take a try to save your assetTable SQL table records in to a Collection firstly, then use it as a data source within your second formula that you provided. Please take a try with the following workaround:
Set the OnVisible property of the first screen of your app to following formula:
ClearCollection(assetTableCollection, '[dbo].[assetTable]')
Modify your second formula as below:
//Collect the last all assets for the selected site
ClearCollect(
colAssets,
Filter(assetTableCollection, dateId exactin colRecentDates.dateId)
)
then check if the issue is solved.
In addition, I also agree with @mr-dang's thought almost. More details about the Patch function, please check the following article:
Patch function
Best regards,
Kris