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
Hi guys,
I have a date slicer. When I choose list, the date starts from below, which is correct because I have another filter applied to the report.
However, when I choose between option, it gives me the whole date range instead of the filtered date range:
Why?
I only have one table in this report.
Solved! Go to Solution.
Hi @Luden76
Thanks for reaching out to us.
The between type slicer is designed this way.
As a workaround, you can use measure to interfere with the date range obtained from the slicer. For example,
when you select date range in between type slicer, use the measure below,
Measure =
var _start=MINX(ALLSELECTED('Calendar'),[Date])
var _end=MAXX(ALLSELECTED('Calendar'),[Date])
var _t=FILTER('Table','Table'[date]>=_start && 'Table'[date]<=_end)
return COUNTX(_t,[date])
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @Luden76
Thanks for reaching out to us.
The between type slicer is designed this way.
As a workaround, you can use measure to interfere with the date range obtained from the slicer. For example,
when you select date range in between type slicer, use the measure below,
Measure =
var _start=MINX(ALLSELECTED('Calendar'),[Date])
var _end=MAXX(ALLSELECTED('Calendar'),[Date])
var _t=FILTER('Table','Table'[date]>=_start && 'Table'[date]<=_end)
return COUNTX(_t,[date])
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
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!