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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NidhiBhusari
Helper IV
Helper IV

Calculating category wise % using Total

Hello,

Can anyone guide on how to calculate category wise % contribution using total.

Ex - I have age group, no of voters and on selection from slicer of particular age group % of voters in selected age category should get displayed.

Age GroupNo of Voters
21-30100000
31-40345000
41-50545000
51-657500000
66-80200000
2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@NidhiBhusari , based on what I got so far , a measure like

divide(sum(Table[No of Voters]), calculate(sum(Table[No of Voters]), allselected(Table)))

View solution in original post

v-angzheng-msft
Community Support
Community Support

Hi, @NidhiBhusari 

 

Try to create a measure like this:

Measure = 
var _total=CALCULATE(SUM('Table'[No of Voters]),ALL('Table'))
var _r=CALCULATE(SUM('Table'[No of Voters]))
return DIVIDE(_r,_total)

Result:

vangzhengmsft_0-1628492655677.png

Please refer to the attachment below for details

 

 

Hope this helps.

 

Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-angzheng-msft
Community Support
Community Support

Hi, @NidhiBhusari 

 

Try to create a measure like this:

Measure = 
var _total=CALCULATE(SUM('Table'[No of Voters]),ALL('Table'))
var _r=CALCULATE(SUM('Table'[No of Voters]))
return DIVIDE(_r,_total)

Result:

vangzhengmsft_0-1628492655677.png

Please refer to the attachment below for details

 

 

Hope this helps.

 

Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@NidhiBhusari , based on what I got so far , a measure like

divide(sum(Table[No of Voters]), calculate(sum(Table[No of Voters]), allselected(Table)))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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