Hi @cha143,
To join 2 tables, use the Table() function. Any matching columns will be merged into a single column, and unique columns will be appended to the table. For example, add a button that collects to tables:
ClearCollect(tbl1,
{ID: 1, Title: "A", Value: 1000},
{ID: 2, Title: "B", Value: 2000},
{ID: 3, Title: "C", Value: 3000},
{ID: 4, Title: "D", Value: 4000});
ClearCollect(tbl2,
{ID: 5, Title: "E", TextValue: "AAA"},
{ID: 6, Title: "F", TextValue: "BBB"},
{ID: 7, Title: "G", TextValue: "CCC"},
{ID: 8, Title: "H", TextValue: "DDD"})
Then, add a table control to display the merged tables and set its Items property to:
Table(tbl1, tbl2)
You should get the following:

Hope this helps