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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Agent766
Regular Visitor

Timeline slicer default to previous month

I'm using the timeline slicer from the gallery. I would like for the default range to have the previous month selected instead of the entire year. Is this doable?

1 ACCEPTED SOLUTION
samdthompson
Memorable Member
Memorable Member

Hi, no this is not possible. If you want a previous month as a default, why not create a calculated column to use as a filter. Assuming you have a date table, something like:

 

IF (
    AND (
        Data[Date]
            >= DATE ( YEAR ( NOW () )MONTH ( NOW () ) - 11 ),
        Data[Date]
            <= DATE ( YEAR ( NOW () )MONTH ( NOW () )1 ) - 1
    ),
    "previous month",
    ""
)

 

>>>if this is a solution please mark as such.

// if this is a solution please mark as such. Kudos always appreciated.

View solution in original post

2 REPLIES 2
samdthompson
Memorable Member
Memorable Member

Hi, no this is not possible. If you want a previous month as a default, why not create a calculated column to use as a filter. Assuming you have a date table, something like:

 

IF (
    AND (
        Data[Date]
            >= DATE ( YEAR ( NOW () )MONTH ( NOW () ) - 11 ),
        Data[Date]
            <= DATE ( YEAR ( NOW () )MONTH ( NOW () )1 ) - 1
    ),
    "previous month",
    ""
)

 

>>>if this is a solution please mark as such.

// if this is a solution please mark as such. Kudos always appreciated.

Thanks. This works great for me.

 

Andrew

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 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.