Forum Discussion
Data filters
- 2 years ago
Hi akash0800 ,
I would do this:
Create a calculated table of the unique values of the colum in questionColumn Values = DISTINCT ( 'table'[Column] )I would create a measure to show their corresponding values as the original column is being filtered
MyMeasure = CALCULATE ( [My Aggregation], FILTER ( 'Table', 'Table'[Columns] = SELECTEDVALUE ( 'Column Values'[Column] ) ) ) + 0Add the column from the calculated table and MyMeasure to a visual.
The calculated table, since it doesn't have a relationship to the slicer columns, will not be filtered but MyMeasure will be since it is referencing the original column and nothing extra is applied to the formula to affect the context filter (example is the use of ALL).
Hi akash0800 ,
I would do this:
Create a calculated table of the unique values of the colum in question
Column Values =
DISTINCT ( 'table'[Column] )
I would create a measure to show their corresponding values as the original column is being filtered
MyMeasure =
CALCULATE (
[My Aggregation],
FILTER ( 'Table', 'Table'[Columns] = SELECTEDVALUE ( 'Column Values'[Column] ) )
) + 0
Add the column from the calculated table and MyMeasure to a visual.
The calculated table, since it doesn't have a relationship to the slicer columns, will not be filtered but MyMeasure will be since it is referencing the original column and nothing extra is applied to the formula to affect the context filter (example is the use of ALL).