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/
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
104 | |
58 | |
45 | |
29 | |
24 |
User | Count |
---|---|
133 | |
94 | |
75 | |
44 | |
41 |