Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
How do I calculate the QoQ change (for MT and %used) within the year (FY24Q2 vs FY24Q1) as well as over years (FY24Q1 vs FY23Q1, FY24Q1 vs FY23Q4) without a date table?
I also need to have the measure change value with Fiscal-Qtr slicer.
This is my table below:
Many Thanks!
Hi,
I am not sure about how your semantic model looks like, but please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below.
OFFSET function (DAX) - DAX | Microsoft Learn
MT measure: =
SUM( Data[MT] )
Prev Qtr MT: =
CALCULATE (
[MT measure:],
OFFSET (
-1,
ALL ( Data ),
ORDERBY ( Data[Fiscal-Qtr], ASC ),
,
,
MATCHBY ( Data[Fiscal-Qtr] )
)
)
Prev Year MT: =
CALCULATE (
[MT measure:],
OFFSET (
-4,
ALL ( Data ),
ORDERBY ( Data[Fiscal-Qtr], ASC ),
,
,
MATCHBY ( Data[Fiscal-Qtr] )
)
)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.