Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
MagnusSthlm
Helper I
Helper I

Rolling quarter

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

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@MagnusSthlm,

 

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 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@MagnusSthlm,

 

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 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

I'll give it a shot although I don't know if that is what I'm after.

@MagnusSthlm,

 

Any progress, feel free to share with us.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.