Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have two tables with the same values and I need to create a new table based on filter on slicer of two tables.
Here is my two slicers
I want my new table look like this.
Value
AAA
BBB
BBB
CCC
DDD
I have tried this but It's not work
Test = UNION(VALUES(Table1[Value]), VALUES(Table2[Value]))
Thank you for any advice.
Solved! Go to Solution.
@temp0rary , You can not create a calculated table using slicer values
Have a combined table
Test = distinct(UNION(distinct(Table1[Value]), distinct(Table2[Value])))
then create a measure and display it with the value from the Test
countrows(filter(Test , Test [Values] in UNION(VALUES(Table1[Value]), VALUES(Table2[Value])) ))
@temp0rary , You can not create a calculated table using slicer values
Have a combined table
Test = distinct(UNION(distinct(Table1[Value]), distinct(Table2[Value])))
then create a measure and display it with the value from the Test
countrows(filter(Test , Test [Values] in UNION(VALUES(Table1[Value]), VALUES(Table2[Value])) ))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 124 | |
| 101 | |
| 67 | |
| 49 |