Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Visualization Summary

Hello Community,      I am a new PowerBI user. I have a table visualization with fields from three tables. I have verified that the results displayed are correct. I now want to count the number of ...
  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi Anonymous ,

     

    If i understand you correctly, ALLSELECT() function might be helpful for you.

    Please refer to the measures below and modify your measures.

    sum = CALCULATE(SUM('Table'[PotentialValue]),ALLSELECTED('Table'))
    count = CALCULATE(COUNT('Table'[ID]),ALLSELECTED('Table'))

    Result would be shown as below.

    BTW, since the filters you used are visual level filter, they can't affect other views such as SUM and COUNT above.

    Instead, you can use page level filter if you want.

     

    Best Regards,

    Jay

    Community Support Team _ Jay Wang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.