Forum Discussion
GuillaumeBD
2 years agoFrequent Visitor
AllSelected inside AllExcept
Hello, I have the measure below to calculate the average price by catergory. I have a filter on Address that I would like to be applied to the measure as well so that "Avg_Cat" changes if I remov...
- 2 years ago
Try this measure:
Avg_Cat = CALCULATE ( AVERAGE ( Houses[Price] ), ALLSELECTED ( Houses ), VALUES ( Houses[Category] ) )
GuillaumeBD
2 years agoFrequent Visitor
Thank you!