Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowGet certified as a Fabric Data Engineer: Check your eligibility for a 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700. Get started
I have a date Field and I want to filter rows base on that
In the Value , I want to have yesterday date formula.
I used https://learn.microsoft.com/en-us/powerquery-m/datetime-fixedlocalnow in the Query ribbon but it not working.
Only #datetime(2023, 5, 31, 0, 0, 0) is working in Query Editor.
What Query I should have in query editor for yesterday date? My date field is datetime
Solved! Go to Solution.
Date.From(DateTime.LocalNow() - #duration(1,0,0,0))
Date.From(DateTime.LocalNow() - #duration(1,0,0,0))