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.
I have an M query as follows:
each if([SprintStartDate] <= Date.From(DateTime.LocalNow()) then <some logic>
this logic is not working, as it does not consider DateTime.LocalNow() as just a date.
I just need to get the date as my SprintStartDate is 1/17/2024 format.
Thanks,
Solved! Go to Solution.
I figured it out, for those that need it :
each if([SprintStartDate] <= Date.From(DateTime.Date(DateTime.LocalNow())) then <some logic>
I figured it out, for those that need it :
each if([SprintStartDate] <= Date.From(DateTime.Date(DateTime.LocalNow())) then <some logic>