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
I need to filter my cards using the condition "OR" between two columns. Start Date and finish date
This numbers depends on two filters, Start Date and Finish Date.
I need one slicer to use as date filter between the both dates "Start Date and Finish Date" however I need to use "OR" instead And.
Is it possible?
Solved! Go to Solution.
Hi @Anonymous
Sure, it's possible. kindly refer to the blog:
https://www.sqlbi.com/articles/using-or-conditions-between-slicers-in-dax/
Hi @Anonymous
Sure, it's possible. kindly refer to the blog:
https://www.sqlbi.com/articles/using-or-conditions-between-slicers-in-dax/
@Anonymous ,
Create a measure like
=
var _max =maxx(allselected(date),date[date])
var _min =minx(allselected(date,date[date]))
return
CALCULATE(SUM(Sales[Sales Amount]),filter(all(date),date[date]=_max || date[date]=_min))
Sorry didnt understand very well Should I use with start date and finish date?
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!