Forum Discussion
170323003
6 years agoHelper 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...
- 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
amitchandak
6 years agoSuper 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