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
saivina2920
Post Prodigy
Post Prodigy

How to Exclude blank date of START_DATE in Filter using DAX Measure

I am excluding the blank values of my column START_DATE. but, i am not sure this is the correct syntax or not.

pls. help us to proceed further.

 

MEASURE1 = 
vToday = TODAY()
vCalDate20 = EMP_TABLE[vToday] - 20
CALCULATE(DISTINCTCOUNT(EMP_TABLE[EMP_NO]),FILTER(EMP_TABLE, 
 EMP_TABLE[START_DATE]  <= (EMP_TABLE[vCalDate20]) && NOT EMP_TABLE[START_DATE] IN {""} &&
 EMP_TABLE[EMP_STATUS] = "Active"))

condition is ==> NOT EMP_TABLE[START_DATE] IN {""} ==> Not working

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@saivina2920 , Try isblank ,

corrected few syntaxes

 

MEASURE1 =
vToday = TODAY()
vCalDate20 = vToday - 20
return
CALCULATE(DISTINCTCOUNT(EMP_TABLE[EMP_NO]),FILTER(EMP_TABLE,
EMP_TABLE[START_DATE] <= (EMP_TABLE[vCalDate20]) && NOT(isblank(EMP_TABLE[START_DATE])) &&
EMP_TABLE[EMP_STATUS] = "Active"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@saivina2920 , Try isblank ,

corrected few syntaxes

 

MEASURE1 =
vToday = TODAY()
vCalDate20 = vToday - 20
return
CALCULATE(DISTINCTCOUNT(EMP_TABLE[EMP_NO]),FILTER(EMP_TABLE,
EMP_TABLE[START_DATE] <= (EMP_TABLE[vCalDate20]) && NOT(isblank(EMP_TABLE[START_DATE])) &&
EMP_TABLE[EMP_STATUS] = "Active"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

I am getting if count is zero as "[Blanks]". I want to display as "0" instead of "[Blank]".

 

How to achieve this..?

any update..

Thanks for your help..It's working.

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