Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Neandril
Frequent Visitor

Get the second tuesday of the next Month from today

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

1 ACCEPTED 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.

RicoZhou_0-1673848753877.png

 

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.

 

 

 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Neandril , Create a new column or measure as per need

 

New =var _nx = EOMONTH(TODAY(),0)+1
return _nx -WEEKDAY(_nx,2) +16
Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.

RicoZhou_0-1673848753877.png

 

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.

 

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.