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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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.. 🙂
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.