Hey there,
I am new to PowerApps and working on my first app. I have spent days trying to figure this out but no luck so grateful if anyone can help me.
I have two collections, collectionOne and collectionTwo
TableOne
LookupID Invoice
1 32
2 48
3 49
4 52
5 67
tableTwo
LookupID
2
4
5
I am trying to filter these two tables and find any matches e.g. 2 and 5 and then get the corresponding invoice number e.g. 48, 67 to store in a new collection. LookupID columns are both lookups to related dataverse tables.
Filter(
collectionOne, tableOne[@LookupID].LookupID, Value in collectionTwo[@LookupID].LookupID
)
Any suggestions where I am going wrong would be soooo helpful.
Thanks