Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hello.
I want to retrieve the next second tuesday of the next month from today. How can I achieve this in DAX please ?
For example, next 2nd tuesday is the 14th on February.
Thank's in advance
Solved! Go to Solution.
Hi @Neandril ,
Here I suggest you to try this code to create a calculated column or a measure.
New =
VAR _NextMonthFirstDay =
EOMONTH ( TODAY (), 0 ) + 1
VAR _WeekdayOfFirstDay =
WEEKDAY ( _NextMonthFirstDay, 2 )
RETURN
IF (
_WeekdayOfFirstDay > 2,
_NextMonthFirstDay - _WeekdayOfFirstDay + 16,
_NextMonthFirstDay - _WeekdayOfFirstDay + 9
)
Here I have a test on a Date table, it works.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank's for this.
However, it "partially" works. On some months, it returns incorrect values (I created a calendar table for test purpose). Last November, it should be the 8th, but this formula returns the 15th.
Hi @Neandril ,
Here I suggest you to try this code to create a calculated column or a measure.
New =
VAR _NextMonthFirstDay =
EOMONTH ( TODAY (), 0 ) + 1
VAR _WeekdayOfFirstDay =
WEEKDAY ( _NextMonthFirstDay, 2 )
RETURN
IF (
_WeekdayOfFirstDay > 2,
_NextMonthFirstDay - _WeekdayOfFirstDay + 16,
_NextMonthFirstDay - _WeekdayOfFirstDay + 9
)
Here I have a test on a Date table, it works.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
10 | |
9 | |
9 |
User | Count |
---|---|
15 | |
12 | |
12 | |
11 | |
11 |