Forum Discussion

meg5w's avatar
meg5w
Frequent Visitor
7 years ago
Solved

Graph filter for OVERALL total

I am needing to filter a graph, basically saying if the total count is <4, don't show the graph. I tried adding this to the visual level filters but did not have any luck, as it breaks it down and fi...
  • v-frfei-msft's avatar
    v-frfei-msft
    7 years ago

    Hi meg5w ,

     

    To create a measure as below and make the visual filtered by it as the picture.

     

    Measure 2 = var a = CALCULATE(SUM(Table1[count]),ALLSELECTED(Table1))
    return
    if(a>4,1,BLANK())