Reputation: 73
I am struggling with setting a measure as a slicer while I cannot use calculated columns or calculated tables. I have a table simply like this:
I have added two measures which give the count and the list of distinct Y for each X:
Distinct Y in each X - Count =
CALCULATE (
DISTINCTCOUNT ( Table1[Y] ),
ALLEXCEPT ( Table1, Table1[X] )
)
and
Distinct Y in each X - List =
CALCULATE (
CONCATENATEX (
DISTINCT ( Table1[Y] ),
Table1[Y],
", "
),
ALLEXCEPT ( Table1, Table1[X] )
)
Now what I need to have is:
I cannot use calculated columns or calculated tables. Do you know if this is possible with Power BI?
Many thanks
Upvotes: 1
Views: 970
Reputation: 7891
You cannot use a Measure in a Slicer, in Power BI.
To achieve the functionality you require, you will have to use either a calculated column, or a calculated table.
Upvotes: 2