Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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>