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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.