Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Can you please help me how can i convert this expression
Fully Denied = CALCULATE(DISTINCTCOUNT('Financial '[cl_number]),FILTER('Financial ','Finance'[STATUS]<>0))
@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]))))
@Anonymous ,
What is the data type of ACR_STATUS column ?
If possible so can you share some dummy data.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!