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
DaveAA
Regular Visitor

Measure to divide the sum of one column by the count of another

Hello,

I have 2 columns - column1 contains unique labels, column2 contains a value (1 or 0 that represents yes/no).  I want to sum the values in column2 and divide by the number of occurrences of the unique label over any rows so I can return a % of Y vs. N.

Ecru Uph1
Ecru Uph1
Leesport Uph1
Arcadia Uph1
Arcadia Uph1
Arcadia Uph1
Arcadia Uph0

 

Thank you.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

CountAll = COUNTROWS('YourTable')

CountYes = CALCULATE(
	[CountAll],
	'YourTable'[Column2] = 1
)

Yes Percent = DIVIDE(
	[CountYes],
	[CountAll]
)

I've split this up into 3 measures so you can call those measures later on, for example if your wanted a No percent.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

CountAll = COUNTROWS('YourTable')

CountYes = CALCULATE(
	[CountAll],
	'YourTable'[Column2] = 1
)

Yes Percent = DIVIDE(
	[CountYes],
	[CountAll]
)

I've split this up into 3 measures so you can call those measures later on, for example if your wanted a No percent.

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
Top Kudoed Authors