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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
AloisOh
Frequent Visitor

Divide a sum by number of 'Completed' items for each month for two given years.

Hi all, 

I have a dataset containing a list of bus trips for year 2020 and 2021. Each month, I have to pay a sum of money for this bus service. For year 2020, the monthly sum is $6300 and for year 2021, it's $6000.

Each trip comes with the status - Completed, Cancelled or Scheduled. 

I would like to seek help for an expression to calculate the monthly fee for each completed trip by taking the respective sum divided by the count of completed trips for each month for that given year. 

AloisOh_0-1628778468370.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @AloisOh ,

 

If you want to sort by month, you can create a year and month column, as follows

 

Year-Month = FORMAT([Pick Up Time],"YYYY-MMM")

 

13.png

 

The count measure is like

 

Count = CALCULATE(COUNTROWS('Table'),FILTER(ALLEXCEPT('Table','Table'[Year-Month]),[Status]="Completed"))

 

14.png

 

Then you can use the sum to divide the count for each month.

 

 

 

Best Regards,

Stephen Tao

 

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
Anonymous
Not applicable

Hi @AloisOh ,

 

If you want to sort by month, you can create a year and month column, as follows

 

Year-Month = FORMAT([Pick Up Time],"YYYY-MMM")

 

13.png

 

The count measure is like

 

Count = CALCULATE(COUNTROWS('Table'),FILTER(ALLEXCEPT('Table','Table'[Year-Month]),[Status]="Completed"))

 

14.png

 

Then you can use the sum to divide the count for each month.

 

 

 

Best Regards,

Stephen Tao

 

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

 

 

 

amitchandak
Super User
Super User

@AloisOh , Try a measure like

Sumx(Table, if(year([Date]) = 2020, 6300,6000) * if([status] ="completed",1,0))

 

Changes values as per need, use switch in place of "If", if needed

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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