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
Anonymous
Not applicable

Check if a column values is blank and simply return Yes/N

Good morning,

i looked around and i still couldn't find a solution to something so simple.


I have a colmun where some rows have values other don't.
I need to create another column that returns Yes if there's a value, No if there's not

I tried :
if(isblank[columnName]),"True","False")
if(isblank[columnName]),true,false)

And .. no luck
Thanks for any help

1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

Hi @Anonymous ,

 

I have built a simple data sample(column is Text type), please check.

  • Use DAX:
Column use DAX = IF([Fonction]<>BLANK(),TRUE(),FALSE())   // or IF([Fonction]<>BLANK(),"Yes","No")

if value is blank-DAX.PNG

  • In Power Query:
TrueOrFalse = Text.Length([Fonction])>0

Or 

YesOrNo = if Text.Length([Fonction])>0 then "Yes" else "No"

if value in blank -In Power Query.PNG

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-eqin-msft
Community Support
Community Support

Hi @Anonymous ,

 

I have built a simple data sample(column is Text type), please check.

  • Use DAX:
Column use DAX = IF([Fonction]<>BLANK(),TRUE(),FALSE())   // or IF([Fonction]<>BLANK(),"Yes","No")

if value is blank-DAX.PNG

  • In Power Query:
TrueOrFalse = Text.Length([Fonction])>0

Or 

YesOrNo = if Text.Length([Fonction])>0 then "Yes" else "No"

if value in blank -In Power Query.PNG

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thanks for the quick reply 🙂
I'm still gettting an error

dhurtubise_0-1627461103075.png

 

Thank you for your feedback.

What I wrote is for calculated column, written in DAX.

 

Are you looking for M in Power Query?

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Anonymous
Not applicable

To be honest i'm just looking for a way to have the data as yes or No lol
I thought i simple Conditionnal Column would do it but no....

Jihwan_Kim
Super User
Super User

Please try the below.

 

Another column CC =
IF ( ISBLANK ( 'tablename'[columnName] ), "No", "Yes" )

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.