Forum Discussion
wchiu
5 years agoFrequent Visitor
Power bi cannot distinguish zero and null
Hi Guys, I have a column that have value null,0,1,2,3,4,5 in a SQL table. When I am using this column in Power BI , I can see the filter plane have value (blank,0,1,2,3,4,5). However, when...
- 5 years ago
wchiu , Can add filter once more and remove is blank and check if it works
amitchandak
Super User
5 years agowchiu , Not very clear.
In DAX you can check isblank([Column/meausre]) for blank
in Power query you can check
if [col] =null then
- wchiu5 years agoFrequent Visitor
Let me assume like this, I have a table like below
When I filtered this value to 0 , blank is also present in the value
I only want 0 appears in my table.....- amitchandak5 years ago
Super User
wchiu , Can add filter once more and remove is blank and check if it works
- wchiu5 years agoFrequent Visitor
Thanks mate! It works!!!!!!!!!