Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

% graph by month

Hello Power BI community,   There is a data that I am working with , one of the column has value  <1.33 or >1.33 The count graph looks like this,   But target graph is percentage of >1.33 ...
  • ryan_mayu's avatar
    ryan_mayu
    6 years ago

    Anonymous 

     

    I assume you have the calendar table and build relationship with the tale you shared.

     

    Measure = 
    VAR _count=COUNTROWS('Table')
    VAR _count2= CALCULATE(COUNTROWS('Table'),ALLEXCEPT(datetime,datetime[month]))
    return _count/_count2