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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Just trying to get a column that will sort out the dates for the past 10 days for another operation. Should be a really simple statement? Here is what I have while trying to add a column the Power Query Editor:
Thanks, Michael
Solved! Go to Solution.
@mikedebruyn try this, tweak it as you see fit
if [Ticket Date] >= Date.AddDays(Date.From(DateTime.LocalNow()), -10) then 1 else 0
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@mikedebruyn if you are using DQ mode you cannot add a custom column in PQ. Today is a DAX function, not M function. Why not add this column at the source instead of Power BI?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@mikedebruyn try this, tweak it as you see fit
if [Ticket Date] >= Date.AddDays(Date.From(DateTime.LocalNow()), -10) then 1 else 0
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
OK, with significantly more work than expected, I converted the report to import, but still getting an error without much direction from PowerBI on what is wrong, formula doesn't throw an error, but this is what I am getting now:
Sorry, just figured it out, there was an extra space in the column name, removed that and now it works, thank you!
Awesome, thank you, but I am in DirectQuery mode and it won't let me use that 😞