Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi, I have the formula below in Alteryx and I need to translate into Power query. Any help would be greatly appreciated.
Past events and events taking place within (2) weeks from today:
DATETIMEPARSE([Start Date], "%Y-%m-%d") <= DATETIMEADD(DATETIMENOW(), +14, "days")
Thank you.
Solved! Go to Solution.
Hi @Marcegon ,
I'm not 100% on what the Alteryx DATETIMEPARSE function is doing, but I'm thinking something like this in Power Query will do what you're after:
DateTime.From([Start Date]) <= Date.AddDays(DateTime.LocalNow(), 14)
Pete
Proud to be a Datanaut!
Hi @Marcegon ,
I'm not 100% on what the Alteryx DATETIMEPARSE function is doing, but I'm thinking something like this in Power Query will do what you're after:
DateTime.From([Start Date]) <= Date.AddDays(DateTime.LocalNow(), 14)
Pete
Proud to be a Datanaut!
It worked! Thank you so much 🙂