Forum Discussion

Nicki's avatar
Nicki
Helper III
7 years ago
Solved

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

 

 

  • Nicki's avatar
    Nicki
    7 years ago

    Thanks.

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

     

    Nicki

6 Replies

  • v-yuta-msft's avatar
    v-yuta-msft
    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.

     

    • Nicki's avatar
      Nicki
      Helper III

      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

       

       

      • v-yuta-msft's avatar
        v-yuta-msft
        Community Support

        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.