Hi all,
Like my subject line says, I am wondering how I can create a collection that combines data from multiple collections. In an app I have, there are 5 different collections that do different things. Each collection does record a "Part #" amongst other things, and I would like to create a collection that grabs the "Part #" from each of these collections.
My collections are "colConnectors", "colAccessories", "colSeals", and "colTerminals"
I am imagining using ClearCollect on a button's OnSelect property to create this collection of collections. I had tried to do something like:
ClearCollect(colAllParts, {'Part #': ForAll(colConnectors, PartNumber) || ForAll(colTerminal, EndTerminal))
But is obviously not working. Can anyone help point me in the right direction for generating this list?