Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all,
I am testing out how to use Offset in Time Intelligence but the output is not coming out correctly. I created three separate formulas to test. I am trying to calculate Prior Quarter. Thank you for your help and please let me know what I am doing wrong.
Image #1 - Matrix table with all three formulas.
File Access
https://1drv.ms/u/s!AlTfdvX0WzaQ1Hp_5BiThvTIDA1f?e=oidNeC
Solved! Go to Solution.
Hey @ysherriff ,
try this measure:
Prev Quarter =
CALCULATE(
[# of MQLs]
, ALL( 'Date'[Quarter & Year] )
, OFFSET(
-1
,
, ORDERBY( 'Date'[QuarternYear] , ASC )
, KEEP
)
)
Be aware that there is an ALL that removes the existing filter.
OFFSET used as filter modifier creates a new filter context, but does not remove an existing one.
Hopefully, this provides what you are looking for.
Regards,
Tom
Thank you Tom. Perfect. Didn't understand the filter context within Offset.
Much appreciated
Hey @ysherriff ,
try this measure:
Prev Quarter =
CALCULATE(
[# of MQLs]
, ALL( 'Date'[Quarter & Year] )
, OFFSET(
-1
,
, ORDERBY( 'Date'[QuarternYear] , ASC )
, KEEP
)
)
Be aware that there is an ALL that removes the existing filter.
OFFSET used as filter modifier creates a new filter context, but does not remove an existing one.
Hopefully, this provides what you are looking for.
Regards,
Tom
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 67 | |
| 51 | |
| 46 | |
| 41 | |
| 39 |