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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mcomsto
Helper I
Helper I

Distinct Count with filter plus previous week returning no values

I am trying to create a previous week count of activities like below, but I cannot get any values to return after applying the date filter.  I'm new to DAX so it mostly likely a simple issue, any help is greatly appreciated.

 

Consented Previous Week = CALCULATE(DISTINCTCOUNT(CareActivityData[PersonID]), FILTER(CareActivityData,CareActivityData[Consent Count] = 1),
FILTER(All('Date'[WeekNum]),'Date'[WeekNum]= MAX('Date'[WeekNum])-1 ))

1 ACCEPTED SOLUTION

@mcomsto

 

Hmm...

Try this one

 

Consented Previous Week =
CALCULATE (
    DISTINCTCOUNT ( CareActivityData[PersonID] ),
    CareActivityData[Consent Count] = 1,
    FILTER (
        ALLSELECTED ( 'Date'[WeekNum] ),
        'Date'[WeekNum]
            = MAX ( 'Date'[WeekNum] ) - 1
    )
)

 

 


Regards
Zubair

Please try my custom visuals

View solution in original post

5 REPLIES 5
Zubair_Muhammad
Community Champion
Community Champion

HI @mcomsto

 

Try replacing ALL with ALLSELECTED

 

Consented Previous Week =
CALCULATE (
    DISTINCTCOUNT ( CareActivityData[PersonID] ),
    FILTER ( CareActivityData, CareActivityData[Consent Count] = 1 ),
    FILTER (
        ALLSELECTED ( 'Date'[WeekNum] ),
        'Date'[WeekNum]
            = MAX ( 'Date'[WeekNum] ) - 1
    )
)

 

 


Regards
Zubair

Please try my custom visuals

Thank you for your reply, but that did not seem to work either.

2018-03-26 12_11_41-Clipboard.png

 

 

 

any other ideas?

@mcomsto

 

Hmm...

Try this one

 

Consented Previous Week =
CALCULATE (
    DISTINCTCOUNT ( CareActivityData[PersonID] ),
    CareActivityData[Consent Count] = 1,
    FILTER (
        ALLSELECTED ( 'Date'[WeekNum] ),
        'Date'[WeekNum]
            = MAX ( 'Date'[WeekNum] ) - 1
    )
)

 

 


Regards
Zubair

Please try my custom visuals

thank you.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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