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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Filter Data to show current date but with time condition

Hello everyone,

I have a set of data that shows transactions performed. The dataset shows data up to 7 days. I'm trying to achieve a workaround in Power Query where I would like to filter the data to show current date. However, it should come with a condition whereby the day starts at 0645am and ends on 0645am the following day (24 Hours). So technically, the data should show transactions performed on 17th August 2021 (Current day) which starts at 0645am and ends at 0645am the following day. I could only filter the data to show the current day but to enforce such condition, I'm unable to find the solution. 

I have attached the excel file test in the link given. Thank you very much for your help and support!

https://1drv.ms/u/s!AiNw1b4HnMZOwn_C66E5-wJeHWkc?e=FkkWtR

1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

You can use syntax like this in your filter step.  Just create any datetime filter step on that column using the "Between" option, and then adapt the code to match the bold part.

 

= Table.SelectRows(#"Changed Type", each [Tasklist Signoff Date and Time] >= Date.AddDays(Date.From(DateTime.LocalNow()), -1) & #time(6,30,0) and [Tasklist Signoff Date and Time] <= Date.From(DateTime.LocalNow()) & #time(6,30,0))

 

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

You can use syntax like this in your filter step.  Just create any datetime filter step on that column using the "Between" option, and then adapt the code to match the bold part.

 

= Table.SelectRows(#"Changed Type", each [Tasklist Signoff Date and Time] >= Date.AddDays(Date.From(DateTime.LocalNow()), -1) & #time(6,30,0) and [Tasklist Signoff Date and Time] <= Date.From(DateTime.LocalNow()) & #time(6,30,0))

 

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.