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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
mibu
Microsoft Employee
Microsoft Employee

Stacked Column Chart made up of created column data show timefram values as percentages

Hi Power BI Community,

 

I have a Stacked Column Chart made up of created column data, binary in nature:  data for each line item is either Yes or No.

 

I want to show Yes and No as a percentage of their total count...  for timeframe indicated, either week or month.

 

 

Thoughts on how to get what are now two numbers showing with percentages?

 

Thanks!

mibu

1 ACCEPTED SOLUTION

Hi,

 

The measure should be

 

=CALCULATE(SUM(FactData[Units]),FactData[M/NM]="M")/CALCULATE(SUM(FactData[Units]),ALL(FactData[M/NM]))

 

Hope this helps.

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

8 REPLIES 8
Ashish_Mathur
Super User
Super User

Hi,

 

Try this

 

Measure=COUNTROWS(Data)/CALCULATE(COUNTROWS(Data),ALL(Data[Response]))

 

Response is the Name of the column which has Yes/No.  Data is the name of the Table.

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Thanks @Ashish_Mathur!

 

Meausre looks like:

Measure=COUNTROWS(TableName)/CALCULATE(COUNTROWS(TableName),ALL(TableName[ColumnName]))

I get no errors in the measure...  but output looks as follows...  100% for each (Yes and No), rather than correct percentage of each for timeframe indicated.

 

Note:  Reiterating that data in ColumnName is a custom column, created by Custom column formula...

 

Look forward to your feedback.  Thanks!  mibu

Capture.PNG

Hi,

 

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

You may download test file here:

https://www.dropbox.com/sh/0lvrflyn90zrvxv/AACd0m-xGh7sN1Lar3teolZQa?dl=0

 

For example:  First week of Aug 2017...  the percentage, as indicated by red line (Line values = measure MM) should be:  13.6% (24/176).

 

Thanks and best,

mibu

Hi,

 

The measure should be

 

=CALCULATE(SUM(FactData[Units]),FactData[M/NM]="M")/CALCULATE(SUM(FactData[Units]),ALL(FactData[M/NM]))

 

Hope this helps.

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

@Ashish_Mathur.  Your measure worked beautifully.  Thank you so much!  very best, mibu

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @mibu

Please share some data and expected result, so that I can share a solution with you

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors