Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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/
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
18 | |
17 | |
17 | |
16 |
User | Count |
---|---|
28 | |
27 | |
18 | |
14 | |
14 |