Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Folks,
Trying to find the best way to do something. I have a field called "Country" on the "Active" employees table. I also have "Country" on the "Terms" table.
What is the best way to take the values from both tables and have it as its own table and to remove duplicates to create a common slicer between the two? The reason I need to do that is because sometimes I have active and term data on the same page. However, I want it to dynamically update based on the countries being added to both tables. Global slicer won't work until a relationship is created to that custom table.
Any guidance?
Solved! Go to Solution.
@Anonymous,
You may refer to the following DAX.
Table = DISTINCT ( UNION ( VALUES ( Active[Country] ), VALUES ( Terms[Country] ) ) )
@Anonymous,
You may refer to the following DAX.
Table = DISTINCT ( UNION ( VALUES ( Active[Country] ), VALUES ( Terms[Country] ) ) )
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
79 | |
60 | |
36 | |
33 |
User | Count |
---|---|
91 | |
59 | |
59 | |
49 | |
42 |