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! Learn more

Reply
Carrhill
Helper I
Helper I

DAX for filtering Blanks from a measure

Hello,

 

I have the below measure which filters my data by date.  It doesn't work as expected becuase it returns a result when Date Column is Blank.   I need to add IF 'Table'[Date Column]<>BLANK , however that is returning errors.

 

Measure = CALCULATE (COUNT('Table'[Column]),FILTER('Table','Table'[Date Column]>=DATE(2021,01,29)&&'Table'[Date Column]<=DATE(2023,02,03)))
 
Any help would be appreciated! 
4 REPLIES 4
v-luwang-msft
Community Support
Community Support

Hi @Carrhill ,

Has your problem been solved, if so, please consider Accept a correct reply as the solution or share your own solution to help others find it.

Best Regards
Lucien

v-luwang-msft
Community Support
Community Support

Hi @Carrhill ,

In my test ,it not question,could you share your sample data?Remember to remove confidential data.

vluwangmsft_0-1649229516763.png

 

 

Best Regards

Lucien

amitchandak
Super User
Super User

@Carrhill , Try like


Measure = CALCULATE (COUNT('Table'[Column]),FILTER('Table','Table'[Date Column]>=DATE(2021,01,29) && 'Table'[Date Column]<=DATE(2023,02,03) && not(isblank('Table'[Date Column])) ))

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

Hi @amitchandak , it didn't work 😞  No syntax error, but it didn't filter the data. 

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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