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
Anonymous
Not applicable

Need Dax Help

Can you please help me how can i convert this expression 

Fully Denied = CALCULATE(DISTINCTCOUNT('Financial '[cl_number]),FILTER('Financial ','Finance'[STATUS]<>0))

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous ,Seems like 'Financial Claim Lag'[ACR_STATUS] is text

Use

Claim Fully Denied = CALCULATE(DISTINCTCOUNT('Financial Claim Lag'[CLAIM_NUMBER]),FILTER('Financial Claim Lag','Financial Claim Lag'[ACR_STATUS]<>"0"))

or

Claim Fully Denied = CALCULATE(DISTINCTCOUNT('Financial Claim Lag'[CLAIM_NUMBER]),FILTER('Financial Claim Lag','Financial Claim Lag'[ACR_STATUS]<>""))

or

 

Claim Fully Denied = CALCULATE(DISTINCTCOUNT('Financial Claim Lag'[CLAIM_NUMBER]),FILTER('Financial Claim Lag',not(isblank('Financial Claim Lag'[ACR_STATUS]))))

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
Tahreem24
Super User
Super User

@Anonymous ,

 

What is the data type of ACR_STATUS column ?

If possible so can you share some dummy data.

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

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