Forum Discussion
Kristofferaabo
Helper IV
8 years agoCreate a table with columns from
Hi! I have three tables (A, B and C), they all have many columns that I use for other stuff but I would like to be able to create a MASTER table pulling three colunms out and merging them into one t...
v-ljerr-msft
Microsoft Employee
8 years agoHi Kristofferaabo,
Based on my test, you should be able to use the formula below to create the calculate table in your scenario. :smileyhappy:
Table =
CROSSJOIN (
SELECTCOLUMNS ( 'TableA', "Project", 'TableA'[Project] ),
SELECTCOLUMNS ( 'TableB', "Company", 'TableB'[Company] ),
SELECTCOLUMNS ( 'TableC', "Country", 'TableC'[Country] )
)
Regards