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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
ericOnline
Post Patron
Post Patron

Blanks that aren't BLANK(), nor null, nor empty strings (""). What are they?

I'm trying to filter out what I think are blank values from a list. Unfortunately, they dont' show as Blank(), don't show as "null" and don't seem to be empty strings ("").

How do I determine the datatype of these values?

How would I eliminate them from the data using DAX?

image.png

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

@ericOnline 

how did you understand this is not the "" ?

try, like

Column = 
SWITCH(TRUE(),
ISBLANK([ID]), "1",
[ID] = "", "2",
"Other")

also it will be a good idea to look at data source in Power Query. Does look the same?


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

5 REPLIES 5
Arielcchy
Advocate II
Advocate II

Thought this has been solved, there is a way to find out in Power Query.

If you go to one of those mistery rows > right click > replace values, it will automatic identify its content and fill it into "Value To Find".

Hope this help.

az38
Community Champion
Community Champion

Hi @ericOnline 

it maybe a space or a few spaces in row, for example.

to debug create a calculated column

 

debug = LEN([ID])

 

the better way is to execute trim operation for this column in Power Query Editor mode

also try ISTEXT() or ISNUMBER() functions to understand data type

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

@az38 thanks for the idea. What do you make of these results?

- I filtered by Blank(?) value

- Created a new calculated column

Results:

image.png

 

image.png

az38
Community Champion
Community Champion

@ericOnline 

how did you understand this is not the "" ?

try, like

Column = 
SWITCH(TRUE(),
ISBLANK([ID]), "1",
[ID] = "", "2",
"Other")

also it will be a good idea to look at data source in Power Query. Does look the same?


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Nice! @az38 thanks for this debugging tip. You were right, it was an empty string:

image.png

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Users online (137)