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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Filter a table visual using a date slicer

Hellp, Power friends,

 

I have a table (visual) with two date colluns (begin a end date vacation) and a slicer with the vacation date interval. I need to filter the visual to show only the vacations between the slicer date selection. I`ve tried to use measures and a auxiliary table and nothing works. Any ideas?

 

Thanks

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

Hi @Anonymous ,

 

I've created a sample for your reference. Please note here we shouldn't create relationship between date table and the fact table.

 

Measure = 
VAR mind =
    MIN ( 'date'[Date] )
VAR maxd =
    MAX ( 'date'[Date] )
VAR sdate =
    MAX ( 'Table'[S-date] )
VAR edate =
    MAX ( 'Table'[E-date] )
RETURN
    IF ( sdate <= mind && edate >= maxd, "in", 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 ,

 

I've created a sample for your reference. Please note here we shouldn't create relationship between date table and the fact table.

 

Measure = 
VAR mind =
    MIN ( 'date'[Date] )
VAR maxd =
    MAX ( 'date'[Date] )
VAR sdate =
    MAX ( 'Table'[S-date] )
VAR edate =
    MAX ( 'Table'[E-date] )
RETURN
    IF ( sdate <= mind && edate >= maxd, "in", 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.
tarunsingla
Solution Sage
Solution Sage

A date filter on your report page will give you the desired results. Please refer the documentation in the link below.

https://docs.microsoft.com/en-us/power-bi/visuals/desktop-slicer-filter-date-range

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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