The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
Solved! Go to Solution.
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.