Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi everyone,
I need to solve an issue that I am having with DAX, but I cant find the right query.
To give you some context: I have different regions in my data that have the values T100, T200, T300 and so on. They can be found in the column RegionLevel2 in the table Geography. Then , in the same table there is a column called TerrLevel1 that has the territories. Each region has multiple territories. So for example the territories for region T100, are T101, T102, T103 and so on. For each of these territories I have calculated a Score, based on their individual sales. It is a measure called Score1 and working fine. Now I need to calculate the score for the regions. This score is based on the average of the sales of a regions territories. So in the case of T100, its score would be the average of the Score1 of T101, T102, T103 and so on. I have tried these DAX
Solved! Go to Solution.
Hi @f_r_1998 ,
Based on your description, I created the following test data:
Create a measure
RegionScore =
CALCULATE(
AVERAGE(Geography[Sale]),
ALLEXCEPT(Geography,Geography[Region])
)
Final output
You can try the above test as I can't tell what your other filters are, and you can follow the above logic to write the code that works for you.
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @f_r_1998 ,
Based on your description, I created the following test data:
Create a measure
RegionScore =
CALCULATE(
AVERAGE(Geography[Sale]),
ALLEXCEPT(Geography,Geography[Region])
)
Final output
You can try the above test as I can't tell what your other filters are, and you can follow the above logic to write the code that works for you.
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
100 | |
65 | |
44 | |
36 | |
36 |