Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
What is wrong with my formula please?
EvalDesignComp30 =
SUMX(crb87_consultantevaluation, if(crb87_consultantevaluation[Review Phase] = "30% Design", crb87_consultantevaluation[EvalPhaseDesign] * 0.15)
IF(crb87_consultantevaluation[Review Phase] = "60% Design", crb87_consultantevaluation[EvalPhaseDesign] * 0.25)
IF(crb87_consultantevaluation[Review Phase] = "100% Design", crb87_consultantevaluation[EvalPhaseDesign] * 0.6))
Solved! Go to Solution.
Hi,
I am not sure about how the result will look like, but please check the below. In your formula, some of , , , , are missing.
EvalDesignComp30 =
SUMX (
crb87_consultantevaluation,
IF (
crb87_consultantevaluation[Review Phase] = "30% Design",
crb87_consultantevaluation[EvalPhaseDesign] * 0.15,
IF (
crb87_consultantevaluation[Review Phase] = "60% Design",
crb87_consultantevaluation[EvalPhaseDesign] * 0.25,
IF (
crb87_consultantevaluation[Review Phase] = "100% Design",
crb87_consultantevaluation[EvalPhaseDesign] * 0.6
)
)
)
)
Hi,
I am not sure about how the result will look like, but please check the below. In your formula, some of , , , , are missing.
EvalDesignComp30 =
SUMX (
crb87_consultantevaluation,
IF (
crb87_consultantevaluation[Review Phase] = "30% Design",
crb87_consultantevaluation[EvalPhaseDesign] * 0.15,
IF (
crb87_consultantevaluation[Review Phase] = "60% Design",
crb87_consultantevaluation[EvalPhaseDesign] * 0.25,
IF (
crb87_consultantevaluation[Review Phase] = "100% Design",
crb87_consultantevaluation[EvalPhaseDesign] * 0.6
)
)
)
)
EvalDesignComp30 =
SUMX(
crb87_consultantevaluation,
Var x =
Switch(
crb87_consultantevaluation[Review Phase],
"30% Design", 0.15,
"60% Design", 0.25,
"100% Design", 0.6
)
Return
crb87_consultantevaluation[EvalPhaseDesign] * x
)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |