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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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