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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Kolumam
Post Prodigy
Post Prodigy

Counting the values at the end of each quarter

Hi All,

 

I am trying to count the number of values at the end of each quarter. If you see my below result for number of Cleanings, it should be 9 for Qtrr 1 2019 and 5 for Qtr 4 2018 but it counts the total and puts 14 in Qtr1 2019. How do I fix this?

IS my formula correct?

Number of Cleanings = CALCULATE(DISTINCTCOUNT('Cleaning Activity'[Id]),FILTER('Cleaning Activity','Cleaning Activity'[Date of Cleaning]<=ENDOFQUARTER('Month'[Month])))

Quarter is a calculated column from Months table.quarter.JPG

 

 

 

 

 

 

 

 

The expected result is the below:

fsdf.JPG

1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

It looks like your 'Cleaning Activity' table has some issues with the relationship to the 'Month' table. Try applying a 'Cleaning Activity'[Date of Cleaning]>=STARTOFQUARTER(Month[Month]) filter to the measure aswell. 

Number of Cleanings = 
CALCULATE(DISTINCTCOUNT('Cleaning Activity'[Id]),
FILTER(
'Cleaning Activity',
'Cleaning Activity'[Date of Cleaning]<=ENDOFQUARTER('Month'[Month]) && 'Cleaning Activity'[Date of Cleaning]>=STARTOFQUARTER('Month'[Month]) ))

 

 


Connect on LinkedIn

View solution in original post

1 REPLY 1
tex628
Community Champion
Community Champion

It looks like your 'Cleaning Activity' table has some issues with the relationship to the 'Month' table. Try applying a 'Cleaning Activity'[Date of Cleaning]>=STARTOFQUARTER(Month[Month]) filter to the measure aswell. 

Number of Cleanings = 
CALCULATE(DISTINCTCOUNT('Cleaning Activity'[Id]),
FILTER(
'Cleaning Activity',
'Cleaning Activity'[Date of Cleaning]<=ENDOFQUARTER('Month'[Month]) && 'Cleaning Activity'[Date of Cleaning]>=STARTOFQUARTER('Month'[Month]) ))

 

 


Connect on LinkedIn

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors