March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am trying to set a specific day in my date column. I created a custom column based off of a date column called "First Detected" where I want to add one month and then set the day of the date to always be the 3rd of the month. I was able to easily figure out how to set the month with the following formula
= Table.AddColumn(#"Added Custom", "Reported", each Date.AddMonths([First Detected],1))
but cannot figure out how to always set the day to be the 3rd of the month. Any help is appreciated.
Solved! Go to Solution.
@kjenki , Try like this
= Table.AddColumn(#"Added Custom", "Reported", each Date.AddDays(Date.EndOfMonth(Date.AddMonths([First Detected],-1)),3))
@kjenki , Try like this
= Table.AddColumn(#"Added Custom", "Reported", each Date.AddDays(Date.EndOfMonth(Date.AddMonths([First Detected],-1)),3))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
86 | |
77 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |