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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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])) ))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!