I am trying to achieve a very simple thing in Powerapps. I have two collections:
**collection1 collection2**
*Column1 Column2*
abc jkl
def mno
ghi pqr
The collections will always have a one to one relationship between the records, what I need to do is just merge the two collections so I get one collection with two columns from the previous collections. The above data set should produce the following result:
**collection3**
*column1 column2*
abc jkl
def mno
ghi pqr
I've tried different approaches but I always end up with tables in the column fields. It looks so simple, isn't there a simple solution to this kind of problem?