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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Cx2
New Member

Distinct count from previous month

Hey all,

 

Pretty new to PowerBI which has been implemented in my work - and have my first issue that I can't seem to resolve via ChatGPT!

 

Essentially I have a dataset of employees which have all been given their own assigned ID (for distinct count reasons)

 

What I am trying to do is basically have the total distinct IDs of a month and add it together with the total of distinct IDs from 12 months prior, I.e. April 2024 total + April 2023 total. 

I am able to get both of these totals separately in my "Totals" column however in a separate column which adds the current month and the month 12 months prior, it is just repeating the same total as the current month. 

Any advice would be much appreciated and happy to provide details as best I can. 

1 ACCEPTED SOLUTION
v-tianyich-msft
Community Support
Community Support

Hi @Cx2 ,

 

Please share sample data as well as your expected results, but you can try the following expression in general:

DistinctCountPerMonth = DISTINCTCOUNT('YourTable'[EmployeeID])
DistinctCountLastYear = 
CALCULATE(
    DISTINCTCOUNT('YourTable'[EmployeeID]),
    SAMEPERIODLASTYEAR('YourTable'[Date])
)
TotalDistinctCount = 
[DistinctCountPerMonth] + [DistinctCountLastYear]

 

Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Uzi2019
Super User
Super User

Hi @Cx2 

Current month count = CALCULATE(
    DISTINCTCOUNT('Table'[ID]),DATEADD('Calendar'[Date],1,MONTH))
 
Prior month count=  CALCULATE(
    DISTINCTCOUNT('Table'[ID]),DATEADD('Calendar'[Date],-1,year))
 
Total count= Current month count + Prior month count
 
You can create seperte 3 measure or you can combine them in single measure using variable.
 
Total count=
Var Current month countCALCULATE(
    DISTINCTCOUNT('Table'[ID]),DATEADD('Calendar'[Date],1,MONTH))
 
Var Prior month count=  CALCULATE(
    DISTINCTCOUNT('Table'[ID]),DATEADD('Calendar'[Date],-1,year))
 
Return Current month count + Prior month count
 
 
I hope I answered your question!
 
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!
v-tianyich-msft
Community Support
Community Support

Hi @Cx2 ,

 

Please share sample data as well as your expected results, but you can try the following expression in general:

DistinctCountPerMonth = DISTINCTCOUNT('YourTable'[EmployeeID])
DistinctCountLastYear = 
CALCULATE(
    DISTINCTCOUNT('YourTable'[EmployeeID]),
    SAMEPERIODLASTYEAR('YourTable'[Date])
)
TotalDistinctCount = 
[DistinctCountPerMonth] + [DistinctCountLastYear]

 

Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.