Hi @Anonymous ,
Could you share more detail thoughts with your scenario?
What is the relationship between these table? Can you describe more clearly?
What is data source? What is the data type of columns?
From my experience, Do you want to join two tables by the ID column? You can use ForAll function:
AddColumns(TableB,"Name",""); ForAll(TableA, Patch(TableB, LookUp(TableB, ID = TableA[@ID]),{Name:TableA[@Name] }))
The above code is creating the Name column in TableB, and Patch All TableA's name ( ID is matched) to TableB‘s Name column.
It's just for reference, you can post more details, and I will provide the code that fit your App.
Best regards,
Sik