March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Solved! Go to Solution.
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")
The count measure is like
Count = CALCULATE(COUNTROWS('Table'),FILTER(ALLEXCEPT('Table','Table'[Year-Month]),[Status]="Completed"))
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.
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")
The count measure is like
Count = CALCULATE(COUNTROWS('Table'),FILTER(ALLEXCEPT('Table','Table'[Year-Month]),[Status]="Completed"))
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.
@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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |