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

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.

Reply
Anonymous
Not applicable

Using Multiple Filters at the same time

Hello Experts,

 

We have a problem where we need to filter the "From" time and "To" time and it should give the results between that time. We dont want to use the slider or the multi select option. Is there any way to create a measure or similar thing which will give the below desired result:

 

Table Structure:

Dataset NameFromTo
Dataset A01:00:0001:00:00
Dataset B02:00:0002:00:00
Dataset C03:00:0003:00:00
Dataset D04:00:0004:00:00
Dataset E05:00:0005:00:00
Dataset F06:00:0006:00:00
Dataset G07:00:0007:00:00
Dataset H08:00:0008:00:00
Dataset I09:00:0009:00:00
Dataset J10:00:0010:00:00
Dataset K11:00:0011:00:00
Dataset L12:00:0012:00:00
Dataset M13:00:0013:00:00
Dataset N14:00:0014:00:00

 

When selecting 1:00:00 in "From" and 3:00:00 in "To" slicers, it should give Dataset A, Dataset B, Dataset C.

 

No Idea how to attach the PBIX file here. Those willing to help, please message me, I'll provide you the sample PBIX file. 

 

 

1 ACCEPTED SOLUTION
ERD
Community Champion
Community Champion

@Anonymous ,

I would just use a slicer with Between option if that is an option for you:

ERD_0-1622560870040.png

P.S.: your data example shows that From = To, so you can simply add another column in Power Query using either From, or To column.

ERD_1-1622561024948.png

 

If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

View solution in original post

3 REPLIES 3
ERD
Community Champion
Community Champion

@Anonymous ,

I would just use a slicer with Between option if that is an option for you:

ERD_0-1622560870040.png

P.S.: your data example shows that From = To, so you can simply add another column in Power Query using either From, or To column.

ERD_1-1622561024948.png

 

If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

amitchandak
Super User
Super User

@Anonymous , With independent time table check ate you getting range for time

 

Measure =
var _min = minx(allselected(time), time[time])
var _max = maxx(allselected(time), time[time])
return
calculate(countrows(Table), filter(Table, Table[from] <= _max && Table[to] >= Min))

 

https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hello @amitchandak , we already have tried this. but it gives us blank results. 

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors