The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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>