Forum Discussion

akash0800's avatar
akash0800
Helper I
2 years ago
Solved

Data filters

Hi All, I have a very unique issue.   Is there a way to show all the data irrespective of the filters.   Example: when I pull a column into a visual ( Matrix, Table, etc) it shows 10 different r...
  • danextian's avatar
    2 years ago

    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).