Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.. 🙂