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
Anonymous
Not applicable

how to show dates between startdate and enddate in single slicer

hi all, I have a requirement where i have startdate and enddate of project in table1. now, i want to show display the dates between startdate and enddate in single slicer, so that i can filter projects come under those dates.. i tried by taking date and relating [date] from datetable to startdate in table1 and retreive the results...but in this case i'm missing based on enddate.. how can i sort this out..any solution ?? thanx in advance..

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

Hi @Anonymous ,

 

To create a measure as below. Please note here there is no ralationship between tables.

Measure = 
VAR maxd =
    MAX ( 'CALENDAR'[Date] )
VAR mind =
    MIN ( 'CALENDAR'[Date] )
VAR edate =
    MAX ( 'Table'[End date] )
VAR sdate =
    MAX ( 'Table'[Start date] )
RETURN
    IF ( maxd >= edate && mind <= sdate, 1, BLANK () )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

To create a measure as below. Please note here there is no ralationship between tables.

Measure = 
VAR maxd =
    MAX ( 'CALENDAR'[Date] )
VAR mind =
    MIN ( 'CALENDAR'[Date] )
VAR edate =
    MAX ( 'Table'[End date] )
VAR sdate =
    MAX ( 'Table'[Start date] )
RETURN
    IF ( maxd >= edate && mind <= sdate, 1, BLANK () )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

Hi 


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.