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
Hello, currently working on a project and i encounter some difficulties.
Im trying to check the column using measures if the column KPI has "Blank", "Yes" or "No" entries on that column. The condition would be if KPI column is "blank", the result would be "blank". If KPI column is "No", then the result would be "5" and if KPI column is "Yes" the result should "0". Im done with the Yes and No condition but when im adding the blank part i cant get it right because "Isblank" is only used for measure and i cant put the column name their. Is there any possible way to resolve this? Thanks in advance.!
Solved! Go to Solution.
hi @Anonymous
try to add a calculated column like:
Column =
SWITCH(
[KPI],
"Yes", 0,
"No", 5,
BLANK()
)
hi @Anonymous
try to add a calculated column like:
Column =
SWITCH(
[KPI],
"Yes", 0,
"No", 5,
BLANK()
)
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.