Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Measure needing different context

Dear community,    I would appreciate some help in the following issue. I have aggregated data about some stores. I have several more columns describing the stores but, for the sake of the example...
  • m3tr01d's avatar
    5 years ago

    You could change your calculation like this :

    CALCULATE(
        DISTINCTCOUNT('Table'[Store]),
        FILTER(
            ALL( 'Table'[Store] ),
            [measureA] > 0.05
        )
    )