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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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]))))

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.