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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Calculate Values as Percentage of Month total

Hello all! 

 

I'm trying to use the "Line and Stacked Column Chart" to show two values related to service delivery:

1) Number of households provided service (catogorised by periods of time)

2) Average number of days per month for service delivery. 

I would like to show both series by month (X axis = month)

Here's the problem: I want to employ a calculated measure to show the column values as a percentage of the monthly total rather than absolute values. Essnetially, I need  the attached chart, just with the columns as a % of monthly total rather than an absolute value

 

Screenshot 2020-12-28 142738.png

6 REPLIES 6
amitchandak
Super User
Super User

@Anonymous ,

, Try measures like

 

% of month = divide([measure], calculate([measure],allexcept(Table, Table[Month]))

or

% of month = divide([measure], calculate([measure],filter(allselected(Table), Table[Month] =max(Table[Month]))))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
AllisonKennedy
Super User
Super User

@Anonymous  You can use DIVIDE for percentage and CALCULATE to change the filter context and give you the month total:

 

Measure = DIVIDE( [CountServices] , CALCULATE( [CountServices], ALL(Table[day_group])) )

 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Anonymous
Not applicable

Hi Allison,

I'm not sure I understand the filtering here using the CALCULATE variable. Apologies, I'm quite a basic user. 

 

If I follow correctly, your "[CountServices]" is the sum of households assisted? 

 

If I create a calculated measure for sum of households assisted, "[sum_hh]", then place it into your formula, it doesn't give the desired outcome. It seems like I need to use CALCULATE to filter the table so that I get a numerator that is sum of households filtered by [day_group] and [month] and a denominator that is filtered just by [month] but I don't know how. 

 

Screenshot2.png

amitchandak
Super User
Super User

@Anonymous , Try measures like

 

% of month = divide([measure], calculate([measure],allexcept(Table, Table[Month]))

or

% of month = divide([measure], calculate([measure],filter(allselected(Table), Table[Month] =max(Table[Month]))))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
StefanoGrimaldi
Resident Rockstar
Resident Rockstar

you can change the field setting from the column value assigned to show as % of the grand total: 

StefanoGrimaldi_0-1609159302772.pngStefanoGrimaldi_1-1609159322479.png

that will make the column values to show as a % of the total column value, 





Did I answer your question? Mark my post as a solution! / Did it help? Give some Kudos!

Proud to be a Super User!




Anonymous
Not applicable

Hi Stefano, 

 

Unfortunately that just gives me the percentage of the total, whereas I want the percentage of each month. So, each month would be out of 100%

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.