Forum Discussion
ravimankotia
3 years agoNew Member
percentage
I need help on how to show percentage from 2 colomns in the matrix chart at the power bi using power query or any other function. See below example from MS excel - Regions A B Penetra...
ShirinArshadnia
3 years agoHelper II
you can use this measure in order to achieve this purpose :
Measure Percentage =
VAR A_Rates =
SUM (Table[A] )
VAR B_Rates =
SUM (Table[B] )
RETURN
A_Rates /( B_Rates + A_Rates )