Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
CarlsBerg999
Helper V
Helper V

Filter with multiple date values

Hi,

 

I have a dataset of tasks that have a duration of multiple days. I want to create a filter that shows only active tasks on the selected date (or date range).

 

Example of my data: 

 

Task nameStart DateEnd date
Build a ship1.2.20213.3.2021
Build a car21.2.202128.2.2021

 

So i would set a filter on 15-20.2.2021 and  it would show me the "Build a ship" task, because the date range is between the Start date and the end date. 

 

How would i make a filter like this? If a changing range is difficult it could also be a weekly filter, e.g. show all tasks that are active on selected weeks.

 

Thank you! 

1 ACCEPTED SOLUTION
timg
Solution Sage
Solution Sage

Hi Carlsberg999,

I think this might be what you're looking for: https://radacad.com/from-and-to-date-slicers-in-power-bi-filtering-based-on-two-fields 

Hope it helps!

 

Best regards,

Tim





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
parry2k
Super User
Super User

@CarlsBerg999 you can add a simple measure, and then use this measure to filter where the filter measure value is 1

 

Filter in Date Range = 
VAR __startDate = MIN ( 'Calendar'[Date] )
VAR __endDate = MAX ( 'Calendar'[Date] )
VAR __startBuildDate = CALCULATE ( MIN ( Build[Start Date] ) )
VAR __endBuildDate = MIN ( Build[End date] ) 
VAR __result = 
IF ( __startDate >= __startBuildDate && __endDate <= __endBuildDate , 1, 0 )
RETURN __result

 

Check my latest blog post Compare Budgeted Scenarios vs. Actuals I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

timg
Solution Sage
Solution Sage

Hi Carlsberg999,

I think this might be what you're looking for: https://radacad.com/from-and-to-date-slicers-in-power-bi-filtering-based-on-two-fields 

Hope it helps!

 

Best regards,

Tim





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.