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 subjec...
  • Tahreem24's avatar
    Tahreem24
    4 years ago

    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.