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
Vamshi2020
Helper II
Helper II

Cumulative Distinct count based on months

Hi Everyone ,

 

I have a Requirement to show Cumulative count based on "Month -Year" in Line chart . Based on selections in Dim Date slicer, my value should change . My Actual count formula is :
Count= 
var a=MINX(DimDate,DimDate[Date])
var b=MAXX(DimDate,DimDate[Date])
var c=calculate(Distinctcount(MemberTable[MemberId]),Filter(MemberTable , MemberTable[StartDate]<=b && MemberTable[EndDate]>=a))
return c

The above formula is giving the proper results, but in other line chart i want to see cumulative count for each months.

So i wrote like below:

Cumulative =Calculate(MemberTable[Count],DATESYTD(DimDate[Date],"31/12")

 

But this is not working , 

 

Please help me with the requirement .

TIA

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Vamshi2020 ,

 

Try this:

Cumulative Count =
VAR a =
    MINX ( ALLSELECTED ( DimDate ), DimDate[Date] )
VAR b =
    MAXX ( DimDate, DimDate[Date] )
VAR c =
    CALCULATE (
        DISTINCTCOUNT ( MemberTable[MemberId] ),
        FILTER ( MemberTable, MemberTable[StartDate] <= b && MemberTable[EndDate] >= a )
    )
RETURN
    c

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

View solution in original post

2 REPLIES 2
Icey
Community Support
Community Support

Hi @Vamshi2020 ,

 

Try this:

Cumulative Count =
VAR a =
    MINX ( ALLSELECTED ( DimDate ), DimDate[Date] )
VAR b =
    MAXX ( DimDate, DimDate[Date] )
VAR c =
    CALCULATE (
        DISTINCTCOUNT ( MemberTable[MemberId] ),
        FILTER ( MemberTable, MemberTable[StartDate] <= b && MemberTable[EndDate] >= a )
    )
RETURN
    c

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@Vamshi2020 , with two dates to me it seem like a case like my HR blog current employee.

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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