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 and <1.33 by month. When I try using GT% it gives % of a ummulative but not by month.

 

Can I please get help on how to get the % by month?

Thank You,

Rushi Sathi

  • 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

6 Replies