Forum Discussion
Anonymous
4 years agoNot applicable
Get slicer selected values in table
Hi everyone, I would like to know if it is possible to get the values selected in a slicer and put them in a table ? In fact, I have a hirerarchical slicer with continents and for each conti...
- 4 years ago
Hi Anonymous ,
Refer the below:
base data table:
Slicer:
Step 1,create measure on slicer:
Measure 2 = CALCULATE(SUM(Slicer[value]),FILTER(Slicer,Slicer[Name]=SELECTEDVALUE('Table'[Country])))Step2,use the measure on base table:
valueqq = VAR _1 = EXCEPT ( ALL ( 'Table'[Country] ), ALLSELECTED ( Slicer[Name] ) ) RETURN IF ( CALCULATE ( IF ( ISFILTERED ( 'Slicer'[Name] ), 1, 0 ), ALLSELECTED ( Slicer ) ) = 0, [maxvalue], IF ( CALCULATE ( COUNTROWS ( 'Table' ), FILTER ( 'Table', 'Table'[Country] IN _1 ) ) = 1, MAX ( 'Table'[value] ), [Measure 2] ) )Output result:
I provided my pbix if you need.
Did I answer your question? Mark my post as a solution!
Best RegardsLucien
amitchandak
4 years agoSuper User
Anonymous , You can put them in visual table, by having the same column as un summarized field.
You can not use slicer values in a calculate table