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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jondarcy
New Member

Create a rule to show If a column contains text or not

Hi All

 

I have created a report in desktop and I want to add a column (Column B) to show if the column next to it (Column A) contains text or not and return a yes/no response. I tried isblank and a conditional column, but I can't get the right result.

 

Thanks in advance

1 ACCEPTED SOLUTION

@jondarcy 

You posted this question under Power Query, so I provided a PQ solution. It seems you need to add a column to your table using DAX, Go to you table, and add a new column 

Fowmy_0-1705585717244.png


Add this code:

Check Blank = IF(  OR( ISBLANK([Column A])  , [Column A]="") , "Yes" , "No" )




 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

6 REPLIES 6
Fowmy
Super User
Super User

@jondarcy 

Try
= if [Column A]=null or [Column A]="" then "Yes" else "No"



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thank you, I tried that and still can't get it to work. I'm clicking Modeling>New Measure then:

1. Column B=

2.= if [Column A]=null or [Column A]="" then "Yes" else "No"

@jondarcy 

You posted this question under Power Query, so I provided a PQ solution. It seems you need to add a column to your table using DAX, Go to you table, and add a new column 

Fowmy_0-1705585717244.png


Add this code:

Check Blank = IF(  OR( ISBLANK([Column A])  , [Column A]="") , "Yes" , "No" )




 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Brilliant, thank you 

Einomi
Resolver II
Resolver II

Hi @jondarcy 

 

Please can you be more specific and let us know how your data looks like and the desired outcome. You are welcome to attach screenshots

 

Looking forward

Screenshot_20240118_094854_Microsoft 365 (Office).jpg

  • I'm trying to do something similar to the above in PowerBI. I have a column, some rows have text, some don't and I just want to add a column to identify the rows which do/don't have text in them by returning a Yes/No response

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors