Forum Discussion

170323003's avatar
170323003
Helper I
6 years ago
Solved

Filter Time

Hi!

 

So i made the average time that takes to appointment a booking. But now i have to apply filters, that are the following ones:

- only matters monday to friday;

- between 8h and 19h.

 

here's the table:

 

 

here's the measure i used to AVG:

TmMRespostaHHMMSS = AVERAGE(Reserves[Date Diff])

 

(

DataDiff is a column i made with 

Data Diff = DATEDIFF(Reserves[Date Booking], Reserves[Date],HOUR)
)
 
How do i apply those filters i mentioned before?
 
TY!!

 

 

  • Hi 170323003 ,

     

    We can't add measure to page -level filter, just change the measure to the column:

     

    Measure =
    VAR weekdayb =
        WEEKDAY ( Reserves[Date Booking], 2 )
    VAR weekdayr =
        WEEKDAY ( Reserves[Date], 2 )
    RETURN
        IF (
            weekdayb - 6 < 0
                && weekdayr - 6 < 0
                && HOUR ( Reserves[Date Booking] ) >= 8
                && HOUR ( Reserves[Date Booking] ) <= 19
                && HOUR ( Reserves[Date] ) >= 8
                && HOUR ( Reserves[Date] ) <= 19,
            1,
            0
        )

     

     

    add it to the page level filter and  set it 'is equal to'1

     

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

     

    Best Regards,

    Dedmon Dai

     

4 Replies

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

    Hi 170323003 ,

     

    Are you trying to filter the booking date or reserve date in weekday and between 8:00am and 7:00pm? If so , please refer to the measure below and add it to the table level filter:

     

     

    Measure =
    VAR weekdayb =
        WEEKDAY ( MAX ( Reserves[Date Booking] ), 2 )
    VAR weekdayr =
        WEEKDAY ( MAX ( Reserves[Date] ), 2 )
    RETURN
        IF (
            weekdayb - 6 < 0
                && weekdayr - 6 < 0
                && HOUR ( MAX ( Reserves[Date Booking] ) ) >= 8
                && HOUR ( MAX ( Reserves[Date Booking] ) ) <= 19
                && HOUR ( MAX ( Reserves[Date] ) ) >= 8
                && HOUR ( MAX ( Reserves[Date] ) ) <= 19,
            1,
            0
        )

     

     

    set the filter to 'is equal to'1

     

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

     

    Best Regards,

    Dedmon Dai

     

    • 170323003's avatar
      170323003
      Helper I

      HI v-deddai1-msft ,

       

      Ty for ur answer, i think is that. Although, i can't add the filter. I mean, i add it but doesnt do nothing. 

       

      I added the measure at right. I cant put her in the zone "filters on this page"!

       

      TY

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

        Hi 170323003 ,

         

        We can't add measure to page -level filter, just change the measure to the column:

         

        Measure =
        VAR weekdayb =
            WEEKDAY ( Reserves[Date Booking], 2 )
        VAR weekdayr =
            WEEKDAY ( Reserves[Date], 2 )
        RETURN
            IF (
                weekdayb - 6 < 0
                    && weekdayr - 6 < 0
                    && HOUR ( Reserves[Date Booking] ) >= 8
                    && HOUR ( Reserves[Date Booking] ) <= 19
                    && HOUR ( Reserves[Date] ) >= 8
                    && HOUR ( Reserves[Date] ) <= 19,
                1,
                0
            )

         

         

        add it to the page level filter and  set it 'is equal to'1

         

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

         

        Best Regards,

        Dedmon Dai