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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello.
I need to customize a date filter to select dates from a specified month to a specified month.
For example from drop-down list (February) to drop-down list (June).
I need to select beginning and ending month from a drop-down list each, and not from a slicer.
Is that possible in Power BI?
Thank you.
Solved! Go to Solution.
@Anonymous Or most easiest way is to use the BETWEEN slicer. So, it will give you the range to select between two date range. Easy-Peasy one.
@Anonymous Or most easiest way is to use the BETWEEN slicer. So, it will give you the range to select between two date range. Easy-Peasy one.
@Anonymous , You need to create two slicers, based on independent date tables and use them.
So will have two date tables date1 and date2 with month year and use them in two slicer
new meausre =
var _max =maxx(allselected(Date2), Date2[Date])
var _min =minx(allselected(Date1), Date1[Date])
return
calculate(sum(Table[Value]) , filter(Table, Table[Date]>=_min && Table[Date]<=Max))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.