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!View all the Fabric Data Days sessions on demand. View schedule
Hi Team,
i had flitered two dates from database using measures or calculated column, and want to set these dates to Between date slicer start date and end date.
example - start date is 10/12/2018
end date - today
now in between date slicer i want set these dates as start and end date along with slider.
Solved! Go to Solution.
You could add an additional slicer by creating a calculated column, select "Yes" by default and change the Visual interactions to cross-filter.
Column =
IF (
'Table'[Date] >= DATE ( 2018, 10, 12 )
&& 'Table'[Date] <= TODAY (),
"Yes",
"No"
)
You could add an additional slicer by creating a calculated column, select "Yes" by default and change the Visual interactions to cross-filter.
Column =
IF (
'Table'[Date] >= DATE ( 2018, 10, 12 )
&& 'Table'[Date] <= TODAY (),
"Yes",
"No"
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!