Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
DylanBanINT
Helper I
Helper I

Percentage of Monthly Numbers based on over

I have a table (example below) which has a set of values, I've set up another column to populate with a 1 whenever that value is higher than a certain number.

 

I am trying to calculate the percentage of how many times the value is over a certain amount so I can put this into a monthly graph

 

Going by the below graph the values should be roughly 50% for January, 33% Feb and 75% for March however unsure on how I would get these into a table. Any help appreciated.

 

Year-MonthValueOver 1Percentage Of
    
January 20220.9null 
January 20221.21 
January 20221.31 
January 20220.85null 
February 20220.2null 
February 20221.21 
February 20221.31 
March 20221.51 
March 20221.61 
March 20221.81 
March 20220.9null 
1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @DylanBanINT 

 

You can use a measure like below:

Over a Number =
VAR _Over1 =
    CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[Value] > 1 )
VAR _Overall =
    COUNTROWS ( 'Table' )
RETURN
    DIVIDE ( _Over1, _Overall )

 

Output:

VahidDM_0-1665052000451.png

 

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

 

View solution in original post

1 REPLY 1
VahidDM
Super User
Super User

Hi @DylanBanINT 

 

You can use a measure like below:

Over a Number =
VAR _Over1 =
    CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[Value] > 1 )
VAR _Overall =
    COUNTROWS ( 'Table' )
RETURN
    DIVIDE ( _Over1, _Overall )

 

Output:

VahidDM_0-1665052000451.png

 

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.