Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Check column if blank or null

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.!

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @Anonymous 

try to add a calculated column like:

Column =

SWITCH(

    [KPI],

   "Yes", 0,

    "No", 5,

    BLANK()

)

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

hi @Anonymous 

try to add a calculated column like:

Column =

SWITCH(

    [KPI],

   "Yes", 0,

    "No", 5,

    BLANK()

)

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors