Hello,
I have Three tables, call it A, B, and C. Table B have two lookup columns, the first 'Column A' is a lookup column reference to table A, it's relationship is many-to-one in the table property, but in the table it's either empty or only have unique link to a record in table A, the second lookup column 'Column C' is a lookup column reference to table C, it is a many-to-one relationship as well and have multiple record pointing to one record in table C.
When I try to do this:
ClearCollect(
'Temp Table A',
AddColumns(
'Table A',
"New Column",
LookUp(
'Table B',
'Column A'.Id = Id,
'Column C'.'Name'
)
)
)
The "New Column" in the collection will show only duplicates of one particular data, does anyone know what's going one have a potential solution?
Thank you!