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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. 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
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.