Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.