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...
  • v-deddai1-msft's avatar
    v-deddai1-msft
    6 years ago

    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