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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

DAX - Discarding Null values

I have a following table,

 

NetworkpatIDStatus
A1Approved
A1Approved
A Approved
A1Approved
A2Declined
B3Approved
B4Approved
B Approved
B5Declined
B6Approved

 

I wanted to write a calculated column called count which return distinct count of patID whose status is approved.

But it should not count the patID if its null,

 

I wrote the following DAX query,

COUNT = CALCULATE(DISTINCTCOUNT('TABLE'[patID]),FILTER(ALL('TABLE'),'TABLE'[Network] == EARLIER('TABLE'[Network]) && 'TABLE'[Status] =="Approved" ))
 
the output was,
NetworkpatIDStatuscount
A1Approved2
A1Approved2
A Approved2
A1Approved2
A2Declined2
B3Approved4
B4Approved4
B Approved4
B5Declined4
B6Approved4

 

But the expected output was,

 

NetworkpatIDStatuscount
A1Approved1
A1Approved1
A Approved1
A1Approved1
A2Declined1
B3Approved3
B4Approved3
B Approved3
B5Declined3
B6Approved3

 

Please help with the corrected query eliminating the count which invloves blank patID

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @Anonymous ,

 

I think you almost had it!

tomfox_0-1651006591574.png

 

I just added the <> BLANK() filter to your code:

COUNT = 
CALCULATE( 
    DISTINCTCOUNT ('TABLE'[patID]),
    FILTER ( 
        ALL('TABLE'),
        'TABLE'[Network] = EARLIER('TABLE'[Network]) && 'TABLE'[Status] = "Approved" && 'TABLE'[patID] <> BLANK()
    )
)

 

Does this solve your issue? 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

This calculated column formula works

CALCULATE(DISTINCTCOUNT(Data[patID]),FILTER(Data,Data[Network]=EARLIER(Data[Network])&&Data[Status]="Approved"&&Data[patID]<>BLANK()))

You do not need the ALL function.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
tackytechtom
Super User
Super User

Hi @Anonymous ,

 

I think you almost had it!

tomfox_0-1651006591574.png

 

I just added the <> BLANK() filter to your code:

COUNT = 
CALCULATE( 
    DISTINCTCOUNT ('TABLE'[patID]),
    FILTER ( 
        ALL('TABLE'),
        'TABLE'[Network] = EARLIER('TABLE'[Network]) && 'TABLE'[Status] = "Approved" && 'TABLE'[patID] <> BLANK()
    )
)

 

Does this solve your issue? 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.