Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

average value in a chart

  i have a column( a simple count of a column) where i have two states(the user did or didnt)       Im trying to do a  clustered column chart by day where i take the average value(and in the...
  • MFelix's avatar
    7 years ago

    Hi Anonymous ,

     

    If you want to take the 13 from your calculation you need to use the ALL function but force the filter for the Absent should look something like this 

     

    FIXO AL AUSENTES =
    CALCULATE (
        [.Aluno_PR];
        FILTER (
            ALL ( Table[Column DID / NOT DID] );
            Table[Column DID / NOT DID] = "Didnt"
        )
    )

    Replace the column by the ones on your model and the Didnt also by the corresponding text.

     

    Regards,

    MFelix