Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a report with multiple data tables. Four of them have a column that is named agency with similar data. I want to take the distinct values from all four tables and create a new table with a single agency column that has distinct values from the other four tables. Basically I want to do what union does with more then two tables. Can someone explain how I do this?
Solved! Go to Solution.
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
Thanks Bud!!!!
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
=
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?
User | Count |
---|---|
16 | |
14 | |
13 | |
12 | |
11 |
User | Count |
---|---|
19 | |
16 | |
15 | |
11 | |
9 |