Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have a dashboard based on this table and I need a date filter that filters the data between the start date and the end date.
The start date and end date are different columns.
Is it possible to have a filter between these two dates?
Solved! Go to Solution.
using Selectedvalue funciton you can achieve this. Find attached the file which might help you
Proud to be a Super User!
Hi @FilipaPereira ,
Thank you for reaching out to the Microsoft Fabric Community Forum.
Could you please let us know if the issue has been resolved? I wanted to check if you had the opportunity to review the information provided. If you still require support, please let us know, we are happy to assist you. Thank you for all the members who have already provided helpful responses.
Thank you.
Hi @FilipaPereira ,
We haven’t received an update from you in some time. Could you please let us know if the issue has been resolved?
If you still require support, please let us know, we are happy to assist you.
Thank you.
Hi @FilipaPereira ,
Thank you for reaching out to the Microsoft Fabric Community Forum.
Could you please let us know if the issue has been resolved? I wanted to check if you had the opportunity to review the information provided. If you still require support, please let us know, we are happy to assist you. Thank you for all the members who have already provided helpful responses.
Thank you.
using Selectedvalue funciton you can achieve this. Find attached the file which might help you
Proud to be a Super User!
Yes, this is possible, but it can’t be done with a standard date slicer alone because slicers work on one date column at a time. You need to model the logic explicitly.
Use one Date table and check whether the selected date range overlaps your Start/End dates.
Mark it as a Date table.
In Date Range =
VAR MinSelDate = MIN ( 'Date'[Date] )
VAR MaxSelDate = MAX ( 'Date'[Date] )
RETURN
IF (
MAX ( Fact[StartDate] ) <= MaxSelDate
&& MAX ( Fact[EndDate] ) >= MinSelDate,
1,
0
)Put 'Date'[Date] on a Between slicer
Add In Date Range = 1 as a visual-level filter
This keeps rows where the date interval overlaps the slicer selection.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 20 | |
| 17 | |
| 13 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 40 | |
| 38 | |
| 38 | |
| 38 |