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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
egiam
Frequent Visitor

Filter Function

I have a dax formula that I need to add a filter to.  I tried the following but it didn't work.  Any idea what I'm doing wrong? Thanks!

 

if( 'FACT CA Contract'[AR Elig] = 0,

0,

 ('FACT CA Contract'[AR Cont] / 'FACT CA Contract'[AR Elig] )

FILTER('AR IND Desc',

OR(

'AR IND Desc'[AR_IND_DESC] = "Assisted",

'AR IND Desc'[AR_IND_DESC] = "None")))

 

1 ACCEPTED SOLUTION
egiam
Frequent Visitor

Thanks I found my error.

View solution in original post

4 REPLIES 4
egiam
Frequent Visitor

Thanks I found my error.

amitchandak
Super User
Super User

@egiam , Try like

if( 'FACT CA Contract'[AR Elig] = 0,
0,
calculate( ('FACT CA Contract'[AR Cont] / 'FACT CA Contract'[AR Elig] )
FILTER('AR IND Desc',
OR(
'AR IND Desc'[AR_IND_DESC] = "Assisted",
'AR IND Desc'[AR_IND_DESC] = "None"))) )

 

But are you trying to create a measure or a 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

trying to create a measure

@egiam If it's a measure, you'll need to use an aggregator like SUM.

 

Customer Sold per Age Group =
CALCULATE (
    DIVIDE (
        SUM ( 'FACT CA Contract'[AR Cont] ),
        SUM ( 'FACT CA Contract'[AR Elig] ),
        0
    ),
    FILTER (
        VALUES ( 'AR IND Desc'[AR_IND_DESC] ),
        'AR IND Desc'[AR_IND_DESC] IN { "Assisted", "None" }
    )
)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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