Forum Discussion
JustinDoh1
Post Prodigy
3 years agoHow to apply filter here
I have this measure (that I am trying to add more filter): Skill Mix % Total = Divide( sum(Table[Average1]) , sum(Table[Ave Census]) ) I am trying to add another filter ...
- 3 years ago
Did you forget to include CALCULATE?
Skill Mix % Total 850 = DIVIDE ( CALCULATE ( SUM ( Table[Average1] ), FILTER ( Table, Table[FacilityCode] = 850 ) ), CALCULATE ( SUM ( Table[Ave Census] ), FILTER ( Table, Table[FacilityCode] = 850 ) ) )
AlexisOlson
Super User
3 years agoDid you forget to include CALCULATE?
Skill Mix % Total 850 =
DIVIDE (
CALCULATE (
SUM ( Table[Average1] ),
FILTER ( Table, Table[FacilityCode] = 850 )
),
CALCULATE (
SUM ( Table[Ave Census] ),
FILTER ( Table, Table[FacilityCode] = 850 )
)
)