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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.