Forum Discussion
Pan_Forex
Helper III
3 years agoWinrate 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.
- 3 years ago
WinRate = VAR total = COUNTROWS('YourTable') VAR won = CALCULATE( COUNTROWS('YourTable'), YourTable[won] = TRUE() ) RETURN DIVIDE(won, total)