Forum Discussion

Ito_c's avatar
Ito_c
Frequent Visitor
4 years ago
Solved

Percentage value mismatch between Table value and Line and Clustered Column Chart value

Hi everyone, 

 

I'm facing a mismatch between values due my calculation DAX formula. 

I have a dataset below and I need to count the subjects by fiscal month and return a percentage of this subjects by fiscal month. For the table the result is OK, but for chart the return is only 100%.  

 

The dataset:

Fiscal_YearFiscal_MonthSubject_TitleEvaluation
FYear20FMonth11Algebra IGood
FYear20FMonth11Algebra IIBad
FYear20FMonth11Algebra IIIBad
FYear20FMonth12StatisticNeutral
FYear21FMonth01Social ScienceBad
FYear21FMonth01AlgorithmsGood

 

 

 

I used both calculation DAX formulas:

 

Spoiler
FirstCalculation = CALCULATE(DISTINCTCOUNT('Table'[Subject_Title]) / CALCULATE(DISTINCTCOUNT('Table'[Subject_Title]),ALLSELECTED('Table'[Subject_Title])))
Spoiler
SecondCalculation = CALCULATE('Table'[FirstCalculation],ALL('Table'[Evaluation]))

 

The result work fine for table, but not for the chart:

 

 

Does anyone knows how to plot the same result from column "Second Calculation" in this chart? I'm sure that the problem is related to my DAX formula, but I'm trying to use the Fiscal Month as the ALL filter without success. 

  • Ito_c , as per your given data I have created % Eva Measure based on Fiscal Month.

    % Eva =
    VAR a_ = CALCULATE(COUNT(Table1[Fiscal_Month]))
    VAR b_ = CALCULATE(COUNT(Table1[Fiscal_Month]),ALLEXCEPT('Table1',Table1[Fiscal_Month]))
    RETURN DIVIDE(a_,b_)
     
    Then use this on Stacked Column chart so getting the correct result.
     

6 Replies

  • Ito_c , Which chart are you using? MAke sure you are using  Stack Column Chart instead of 100% Stack Column Chart.

     

    • Ito_c's avatar
      Ito_c
      Frequent Visitor

      Hi Tahreem24, using a stack I have something like:

       

       

      But the disered result is the sum of column "Second Calculation" by Evaluation by Fiscal Month: 

       

      • Tahreem24's avatar
        Tahreem24
        Icon for Super User rankSuper User

        Ito_c, Is it possible for you to share the similar data by masking confidential data so that I will try at my end.