Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Solved! Go to Solution.
What is the PriorityScore meaning?
Is that:
If it's a constant per represented group then you can consider using AVG('Efficiency Matrix'[PriorityScore])) to get what you want.
Proud to be a Super User!
Hi
I need to write condition as below. Without getting the sum of the [PriorityScore], I want to pass the exact value
Conditions:
You have a table with columns [priorityscore] and [scorecard]. Both are numbers.
Syntax for column:
Column = SWITCH(TRUE(),
[priorityscore] = 0, 0,
[priorityscore] > 0 && [scorecard]>=20 && [scorecard]<=40,10,
[scorecard]>=20 && [scorecard]<=40,10
)Syntax measure:
Measure = SWITCH(TRUE(),
SUM([priorityscore]) = 0, 0,
SUM([priorityscore]) > 0 && SUM([scorecard])>=20 && SUM([scorecard])<=40,10,
SUM([scorecard])>=20 && SUM([scorecard])<=40,10
)Depending on your data you and what values you want to achive you need to consider using SUMX except SUM eg. if you need to SUM only a score with priority higher than 0. My syntax measure do not apply that rule.
If it's not the case, you can use it.
If it's a problem - give us a sample rows and logic that you want to apply.
Proud to be a Super User!
Also, I tried using columns
Please see the sample
Hi
I need to write condition as below. Without getting the sum of the [PriorityScore], I want to pass the exact value
What is the PriorityScore meaning?
Is that:
If it's a constant per represented group then you can consider using AVG('Efficiency Matrix'[PriorityScore])) to get what you want.
Proud to be a Super User!
Hi you can try:
priorityscore =
IF (
'Efficiency Matrix'[sum of scorecard] >= 20
&& 'Efficiency Matrix'[sum of scorecard] <= 40, 10,0
)