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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
170323003
Helper I
Helper I

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:

 

170323003_0-1597052081223.png

 

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!!

 

 

1 ACCEPTED SOLUTION

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

 

View solution in original post

4 REPLIES 4
v-deddai1-msft
Community Support
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

 

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. 

170323003_0-1597141202099.png

 

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

 

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

 

amitchandak
Super User
Super User

@170323003 , you have to create a date table and take only weekday diff

refer 2nd page of this file

https://www.dropbox.com/s/y47ah38sr157l7t/Order_delivery_date_diff.pbix?dl=0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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