Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi all,
I'm looking for an M Query assist.
I'd like to set my StartDate to January 1st of the previous year, and my EndDate to the current day. So, start date should read 01-01-2020 and EndDate should read (today, so 09-23-2021). How would I cast that in M Query?
let StartDate = ...?
let EndDate = Date.From(DateTime.LocalNow()) ...?
Thank you!
Solved! Go to Solution.
let EndDate = Date.From(DateTime.LocalNow())
let StartDate = #date(Date.Year(EndDate)-1,1,1)
Another way would be to use the Date.StartOfYear and Date.AddYears functions.
StartDate = Date.From(Date.StartOfYear(Date.AddYears(DateTime.LocalNow(), -1)))
let EndDate = Date.From(DateTime.LocalNow())
let StartDate = #date(Date.Year(EndDate)-1,1,1)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
20 | |
11 | |
10 | |
7 | |
7 |