Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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?
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |