I have multiple tables with some common columns. I’d like to create a new table to combine data from these multiple tables and displayed in the same column.
ex: Table1 has Column1 with some values, Table2 has Column1 with some values
How do I display all data in Table 3 under Column1?
Thanks!
hi @candyspecs , welcome to the community!
you may have a look here: Pulling in data for specific column from multiple tables - #10 by Christiaan_Huizer
it shows how you can combine data using listcombine with the column type select list
I hope it helps, cheers, christiaan
Thank you for your response.