Forum Discussion
muggydaniel
3 years agoNew Member
PowerBi Column Values into %
Hi all I am attempting to display collumn values much like a pivottable "show values as % of collumn total" depending on if the rows are the same inside power query For example: Team...
- 3 years ago
pls try this
Measure = DIVIDE( SUM('Table'[Volumes]), CALCULATE(SUM('Table'[Volumes]),ALLEXCEPT('Table','Table'[Team])) )
Ahmedx
3 years agoSuper User
pls try this
Measure =
DIVIDE(
SUM('Table'[Volumes]),
CALCULATE(SUM('Table'[Volumes]),ALLEXCEPT('Table','Table'[Team]))
)