Forum Discussion

Viola's avatar
Viola
Frequent Visitor
9 years ago
Solved

waffle chart with survey responses

Hello everyone,  I am currently trying to display my survey results using waffle chart. My responses are in text format therefore i need to add a new coulmn that will calculate the values of each re...
  • v-haibl-msft's avatar
    9 years ago

    Viola

     

    I do not know about your data table, so I create a test table like below. In such scenario, we can create two measures to calcuate the responses for each type and all types.

     

    Measure_Count = 
    CALCULATE ( COUNTROWS ( Table1 ), ALLEXCEPT ( Table1, Table1[Response] ) )
    Measure_All = 
    CALCULATE ( COUNTROWS ( Table1 ), ALL ( Table1 ) )

     

     

     

    Best Regards,
    Herbert