Hi Members,
I had a requirement in Power Apps to create a Lookup column for the Power Apps collection.
For example, I have created two different collections:
- col_ProductDetails
- col_ProductCategory

Now, I need to add a lookup column as "Category" to the collection 1(col_ProductDetails) from the collection 2(col_ProductCategory).
So, I have tried the code below, but I am facing an error as shown below:
ClearCollect(
colFinal,
AddColumns(
col_ProductDetails,
"Category",
LookUp(
col_ProductCategory,
'Product ID' = col_ProductDetails[@'Product ID'],
Category
)
)
)

Can anyone please suggest how I can achieve this? Thanks in advance!