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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to count blanks on this case

Hello great Analytics minds:

How can I get the count

SLOverall Status Actual Complete Date
1Completed6/28/2022
2  
3In-Progress 
4  
5  

Actual date = Blank

Overall status = remove blanks

Appreciate your help. 🙂

Thanks

 

1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @Anonymous ,

 

you can filter the table in measure to blank dates and not blank status. On that filtered table you can use a COUNTROWS measure:

 

Overal status with Blank Date =
CALCULATE (
    COUNTROWS ( myTable ),
    myTable[Actual Complete Date] = BLANK () && myTable[Overall Status] <> BLANK ()
)

 

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Thank you. Appreciate your help on my learning process.

Hey @Anonymous ,

 

I'm happy it works 🙂

 

Best regards

Denis

selimovd
Super User
Super User

Hey @Anonymous ,

 

you can filter the table in measure to blank dates and not blank status. On that filtered table you can use a COUNTROWS measure:

 

Overal status with Blank Date =
CALCULATE (
    COUNTROWS ( myTable ),
    myTable[Actual Complete Date] = BLANK () && myTable[Overall Status] <> BLANK ()
)

 

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors