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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Nicki
Helper III
Helper III

Datetime slicer

Hi ,

If we want to filter data  between  05/01/2019  01:20:50 AM  to  05/26/2019 10:10:30 PM,

there is no slicer except list and drop down and It is very hard to select a time.

I come up with this idea,  slicer "between"  for date. Then I added  add 4 "parameter if " to the page to have Start time ( Hours / Minutes) and End Time (Hours/ Minutes). Next I created a filter for datetime and after that added to visual filter because they are measures.

It is very complex soultion.

Is there any way that I can have datetime format slicer and I can use them to report filter?

Or any thought. Thank you in advacne.

 

Nicki

 

 

1 ACCEPTED SOLUTION

Thanks.

I have lots of charts and do not want to add to each visual chart.

 

Nicki

View solution in original post

6 REPLIES 6
v-yuta-msft
Community Support
Community Support

@Nicki ,

 

Yes, currently, built-in slicer doesn't support time-level filtering(except list mode). What if parameters is one workaround as you said. Another possible workaround I have come out is that you can separate the datetime folumn into date and time colomn, they format the time column(HH:MM:SS) as number type (HHMMSS), they create two slicers based on date and time column. Then the time column should be filtered bu slicer with between and other relative mode.

 

Community Support Team _ Jimmy Tao

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

 

Thank you for your respond.

I have two  slicers  for date and  time and slider for time  is off.

In this case, users can enter any time. 

The only things, we can enter any number in slicer.

Is there any way I can check the Number (Hour 1-23 and minute 0-59)  for slicer like if parameter?

 

Regards,

Nicki

 

 

Thank you.

a measure cannot add to page level filters.

 

Nicki

@Nicki ,

 

There's no need to use page level filter, you only need to drag the two measures to visual chart. When user select an hour or minute. The measures will remind them that if the value they select is valid. This is a workaround.

 

Community Support Team _ Jimmy Tao

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

Thanks.

I have lots of charts and do not want to add to each visual chart.

 

Nicki

@Nicki ,

 

The slicer doesn't have this feature. As a workaround, you can create two measures using DAX like:

Is_Hour_Valid =
IF (
    SELECTEDVALUE ( Table[Hour] ) >= 1
        && SELECTEDVALUE ( Table[Hour] ) <= 23,
    "Valid",
    "Invalid"
)

Is_Minute_Valid =
IF (
SELECTEDVALUE ( Table[Hour] ) >= 0
&& SELECTEDVALUE ( Table[Hour] ) <= 59,
"Valid",
"Invalid"
)

Community Support Team _ Jimmy Tao

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.