Forum Discussion
creating table from multiple other tables
- 10 years ago
Hi, welcome to the community, try this: Go to the modelling tab on the ribbon and click create new table. In the formula bar use the DAX expression
=
SUMMARIZE (
UNION (
ALL ( Table1[UniqueValue] ),
ALL ( Table2[UniqueValue] ),
ALL ( Table3[UniqueValue] ),
ALL ( Table4[UniqueValue] )
),
[UniqueValue]
)//If this solves your question please mark as such
Hi, welcome to the community, try this: Go to the modelling tab on the ribbon and click create new table. In the formula bar use the DAX expression
=
SUMMARIZE (
UNION (
ALL ( Table1[UniqueValue] ),
ALL ( Table2[UniqueValue] ),
ALL ( Table3[UniqueValue] ),
ALL ( Table4[UniqueValue] )
),
[UniqueValue]
)
//If this solves your question please mark as such
- Anonymous8 years agoNot applicable
=
SUMMARIZE (
UNION (
ALL ( Table1[UniqueValue] ),
ALL ( Table2[UniqueValue] ),
ALL ( Table3[UniqueValue] ),
ALL ( Table4[UniqueValue] )
),
[UniqueValue]
)What is this unique value line at the end supposed to be?