Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
temp0rary
New Member

Append result from two slicers as new table

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

S__4669468.jpg

 

 

 

 

 

 

 

 

 

 

 

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.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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])) ))

 

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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])) ))

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.