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))
User | Count |
---|---|
117 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
170 | |
117 | |
63 | |
56 | |
51 |