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
socksinbox
Helper I
Helper I

Controlling range for the date slicer

Hi,

I have date slicer based on a date table which has values b/w 2017 and 2022 so this date slicer gives me range as per the table

 

Now i want to control this date range and only like to show date b/w 1 Jan 2019 till current date.

 

How can this be achieved?



1 ACCEPTED SOLUTION

HI @socksinbox ,

You can try to use below measure formula on 'visual level filter' to filter 'Y' result:

Measure filter =
VAR currDate =
    MAX ( Table[Date] )
VAR _calendar =
    CALENDAR ( DATE ( 2019, 1, 1 ), TODAY () )
RETURN
    IF ( currDate IN _calendar, "Y", "N" )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi,

Check if this helps:

You can create a new Date table with below DAX and link it to the original Date Dimension.

Then we can drag the date field from this table into the slicer.

DatesTillToday = CALENDAR( DATE( 2019,1,1 ),TODAY() )

Thanks.

Hi,

Sorry for note mentioning this before but creating a new date table won't help.

 

Is there not a way to filter the current table ranges with some kinda measure filter similar to something we do in Tableau with context filter?

HI @socksinbox ,

You can try to use below measure formula on 'visual level filter' to filter 'Y' result:

Measure filter =
VAR currDate =
    MAX ( Table[Date] )
VAR _calendar =
    CALENDAR ( DATE ( 2019, 1, 1 ), TODAY () )
RETURN
    IF ( currDate IN _calendar, "Y", "N" )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.