Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a measure called EHR (effective hourly rate) which = Sum(revenue)/Sum(labor hours)
I put the measure into a matrix using the profitability date.
I need a way to calculate the %change date over date (preferably Quarter over Quarter) but I don't know how to do this without the EHR data being in a column.
@bhmiller89 wrote:
I have a measure called EHR (effective hourly rate) which = Sum(revenue)/Sum(labor hours)
I put the measure into a matrix using the profitability date.
I need a way to calculate the %change date over date (preferably Quarter over Quarter) but I don't know how to do this without the EHR data being in a column.
You may need 3 measures and one calendar table. See more details in the attached pbix file.
EHR = Sum('datatable'[revenue])/Sum('datatable'[labor hours])
EHR Last Quarter = CALCULATE([EHR], PREVIOUSQUARTER('calendar'[Date]))
%change = [EHR]-[EHR Last Quarter]
I would refer you to this article from the guys from sqlbi. This has a lot of good advice on writing time intelligence calculations.
http://www.daxpatterns.com/time-patterns/
Let me know how you get on.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 70 | |
| 38 | |
| 28 | |
| 27 |