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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Pan_Forex
Helper III
Helper III

Winrate calculated by TRUE OF FALSE

Hello, I would like to count the winrate % for each player. I have a table with 2 columns [player] and [won]. The player column is text and won is TRUE/FALSE. 

1 ACCEPTED SOLUTION
lukiz84
Memorable Member
Memorable Member

WinRate = 
   VAR total = COUNTROWS('YourTable')
   VAR won = CALCULATE(
       COUNTROWS('YourTable'),
       YourTable[won] = TRUE()
   )

   RETURN DIVIDE(won, total)

View solution in original post

2 REPLIES 2
lukiz84
Memorable Member
Memorable Member

WinRate = 
   VAR total = COUNTROWS('YourTable')
   VAR won = CALCULATE(
       COUNTROWS('YourTable'),
       YourTable[won] = TRUE()
   )

   RETURN DIVIDE(won, total)

Thank you very much!

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Kudoed Authors