Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
Can someone please help me with the Dax ?
Dataset -
Calculate -
N - Sum of Value where Color is "Red"
D - Sum of Value where Color is "Yellow"
Div - N/D
The highlighted percentage in yellow needs to be the average of above percentages - it should show 89%. Can someone please help me with the DAX?
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous
Try this:
Div =
IF (
HASONEVALUE ( Sheet1[Category] ),
DIVIDE ( [N], [D] ),
AVERAGEX (
SUMMARIZE ( Sheet1, Sheet1[Category], "DD", DIVIDE ( [N], [D] ) ),
[DD]
)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @Anonymous
Try this:
Div =
IF (
HASONEVALUE ( Sheet1[Category] ),
DIVIDE ( [N], [D] ),
AVERAGEX (
SUMMARIZE ( Sheet1, Sheet1[Category], "DD", DIVIDE ( [N], [D] ) ),
[DD]
)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 10 | |
| 7 | |
| 6 |