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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
saivina2920
Post Prodigy
Post Prodigy

NOT ISBLANK not working in DAX expression

I am trying to form the DAX Expression for Pie Chart. But, the count is not coming properly.

below is my table.

 

Below is the expression.

 

Total_A = CALCULATE(COUNT('TEST DATA'[RECID]),FILTER('TEST DATA',(NOT ('TEST DATA'[COUNTRY-A] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-B] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-C] IN {"NOT APPLICABLE"} )
) && NOT ISBLANK ('TEST DATA'[CODE])))
RETURN Total_A
 
Here NOT ISBLANK is not filtering. 
what could be the problem..
The Result of the TOTAL IS : "3".  But,i am getting always 5....
How it is possible...?
 
1 ACCEPTED SOLUTION
PC2790
Community Champion
Community Champion

Try :

 

Total_A = CALCULATE(COUNT('TEST DATA'[RECID]),FILTER('TEST DATA',(NOT ('TEST DATA'[COUNTRY-A] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-B] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-C] IN {"NOT APPLICABLE"} )
) && 'TEST DATA'[CODE] <> Blank()))

View solution in original post

3 REPLIES 3
Doflamingo
New Member

Hi,

I really don't understand the answers pointing to the blank function, my PowerBI doesn't recognize this crappy function and null (all lowercase!) works very well.....

 

You can simply compare the column with null....

Example : if [column A]<>null then .... else ....

Respect the case! because with  If, IF, Null, NULL : it doesn't work!

 

Doffy

PC2790
Community Champion
Community Champion

Try :

 

Total_A = CALCULATE(COUNT('TEST DATA'[RECID]),FILTER('TEST DATA',(NOT ('TEST DATA'[COUNTRY-A] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-B] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-C] IN {"NOT APPLICABLE"} )
) && 'TEST DATA'[CODE] <> Blank()))

what would be the condition if only blank instead of <> Blank()

&& 'TEST DATA'[CODE] <> Blank()

&& ISBLANK 'TEST DATA'[CODE]

 

Total_A = CALCULATE(COUNT('TEST DATA'[RECID]),FILTER('TEST DATA',(NOT ('TEST DATA'[COUNTRY-A] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-B] IN {"NOT APPLICABLE"} )
&& NOT ('TEST DATA'[COUNTRY-C] IN {"NOT APPLICABLE"} )
) && ISBLANK('TEST DATA'[CODE])))

 

Will the above work...?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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