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
Hi!
I'm trying to create a chart with rolling quarter. I'm stuck. Today is Q1 but I want to present the graph as let's say you are in December it should display 4 bars Q4, Q1, Q2, Q3 in that order. I've Googled and haven't find anything. Any help where to look or how to go about it?
/Magnus
Solved! Go to Solution.
Drag [Date] to Axis, expand to the Quarter level and add measure below. It takes advantage of Show Categories With No Data.
Measure =
VAR d =
MIN ( 'Calendar'[Date] )
VAR n =
DATEDIFF ( d, TODAY (), QUARTER )
RETURN
IF ( n >= 1 && n <= 4, 1 )
Drag [Date] to Axis, expand to the Quarter level and add measure below. It takes advantage of Show Categories With No Data.
Measure =
VAR d =
MIN ( 'Calendar'[Date] )
VAR n =
DATEDIFF ( d, TODAY (), QUARTER )
RETURN
IF ( n >= 1 && n <= 4, 1 )
I'll give it a shot although I don't know if that is what I'm after.
Any progress, feel free to share with us.
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 |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |