Is this even possible?
Basically I have a user select a job they are currently working on, then based on the client ID I build a collection of assets on that Clients site, then a list of questions to be asked for each asset.
When a user selects the job they are working on the client ID is saved as variable JG_Client. And when they go to load the client info I do...
ClearCollect(Asset_List,Filter('SQL_Client_Asset_Table',Client_ID = JG_Client))
So Far So Good.
But now I want to build a collection for each Asset inside Asset_List. I've been thinking along the lines of...
ForAll(Asset_List,ClearCollect("Asset_ID_No",Filter('SQL_Asset_Questions_Table',Asset_ID = Asset_List_Asset_ID)))
This is partly to get around the disambiguation limit, If i just put all the asset questions into one table there could be 7000 questions per job, so way too much for powerapps to handle in one list.
I want this to be part of a download so the user can download all the questions to their device before they start the job, because once they are in the work location there is a high probability of losing connection.
Am I barking up the wrong tree entirely here?