Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi, I have a date table that I always want to filter to yesterday on a refresh. How to I adjust the M code to make this happen?
= Table.SelectRows(#"Changed Type2", each [DateKey] <= #date(2018, 4, 10))
Many thanks in advance.
Solved! Go to Solution.
is this what you mean?
https://msdn.microsoft.com/en-us/query-bi/m/date-adddays
Date.AddDays(DateTime.FromText("2011-12-31"), -1)
Proud to be a Super User!
is this what you mean?
https://msdn.microsoft.com/en-us/query-bi/m/date-adddays
Date.AddDays(DateTime.FromText("2011-12-31"), -1)
Proud to be a Super User!
Thank you, it was close to what I wanted. I ended it with
= Table.SelectRows(#"Changed Type2", each [DateKey] < DateTime.Date(DateTime.LocalNow()))
And it did the trick.. 🙂
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.